/** * Tae Won Ha - http://taewon.de - @hataewon * See LICENSE */ import Cocoa class ColorUtils { static func colorIgnoringAlpha(_ rgb: UInt32) -> NSColor { let red = (CGFloat((rgb >> 16) & 0xFF)) / 255.0; let green = (CGFloat((rgb >> 8) & 0xFF)) / 255.0; let blue = (CGFloat((rgb ) & 0xFF)) / 255.0; return NSColor(srgbRed: red, green: green, blue: blue, alpha: 1.0) } }