Created
June 7, 2020 02:04
-
-
Save prafullakumar/ee79670535818955483d5327f3c65eb0 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
extension Color { | |
static var theme: Color { | |
return Color("theme") | |
} | |
static var error: Color { | |
return Color("error") | |
} | |
static var success: Color { | |
return Color("success") | |
} | |
static var warning: Color { | |
return Color("warning") | |
} | |
static var solidButtontext: Color { | |
return Color("solidButtontext") | |
} | |
static var textHeaderPrimary: Color { | |
return Color("textHeaderPrimary") | |
} | |
static var textHeaderSecondary: Color { | |
return Color("textHeaderSecondary") | |
} | |
static var textParagraph: Color { | |
return Color("textParagraph") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment