mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
18 lines
407 B
Swift
18 lines
407 B
Swift
/**
|
|
* 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)
|
|
}
|
|
}
|