Skip to content

Instantly share code, notes, and snippets.

@vinczebalazs
Last active April 13, 2020 05:34
Show Gist options
  • Save vinczebalazs/158552f1775ed9373d2e0ef4de0a7a2f to your computer and use it in GitHub Desktop.
Save vinczebalazs/158552f1775ed9373d2e0ef4de0a7a2f to your computer and use it in GitHub Desktop.
UIColor+NamedColors
extension UIColor {
static var accent: UIColor {
UIColor(named: "Accent")!
}
static var primary: UIColor {
UIColor(named: "Primary")!
}
static var primaryText: UIColor {
UIColor(named: "PrimaryText")!
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment