Created
August 9, 2018 15:22
-
-
Save vialyx/0771119ee03b7f7d12f0c64e490f90f6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import UIKit.UIColor | |
extension UIColor { | |
static let common = UIColor(hex: "#B11835") | |
static let commonText = UIColor(hex: "#114747") | |
static let commonActionBackground = UIColor(hex: "#119C84") | |
static let commonActionText = UIColor(hex: "#110808") | |
static let positive = UIColor(hex: "#11C7C1") | |
static let negative = UIColor(hex: "#118475") | |
static let barIcon = UIColor(hex: "#11BFBF") | |
static let barTint = UIColor(hex: "#118E8E") | |
static let tabBarActive = UIColor(hex: "#11CDA5") | |
static let cardsBackground = UIColor(hex: "#11F5ED") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment