Created
July 19, 2016 14:49
-
-
Save harryworld/a6d5ae8b16b6178af4ce021137b09508 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if os(iOS) | |
import Cocoa | |
public struct HNColor { | |
public static var DarkGray: UIColor = UIColor(white: 36/255, alpha: 1) | |
public static var DeepGray: UIColor = UIColor(white: 27/255, alpha: 1) | |
} | |
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if os(OSX) | |
import Cocoa | |
public struct HNColor { | |
public static var DarkGray: NSColor = NSColor(white: 36/255, alpha: 1) | |
public static var DeepGray: NSColor = NSColor(white: 27/255, alpha: 1) | |
} | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment