mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-25 23:02:35 +03:00
18 lines
406 B
Swift
18 lines
406 B
Swift
|
/**
|
||
|
* Tae Won Ha - http://taewon.de - @hataewon
|
||
|
* See LICENSE
|
||
|
*/
|
||
|
|
||
|
import Cocoa
|
||
|
|
||
|
class ColorUtils {
|
||
|
|
||
|
static func colorFromCode(rgb: Int32) -> NSColor {
|
||
|
let red = (CGFloat((rgb >> 16) & 0x000000FF)) / 255.0;
|
||
|
let green = (CGFloat((rgb >> 8 ) & 0x000000FF)) / 255.0;
|
||
|
let blue = (CGFloat(rgb & 0x000000FF)) / 255.0;
|
||
|
|
||
|
return NSColor(SRGBRed: red, green: green, blue: blue, alpha: 1.0)
|
||
|
}
|
||
|
}
|