Skip to content

Instantly share code, notes, and snippets.

@prafullakumar
Created June 7, 2020 02:04
Show Gist options
  • Save prafullakumar/ee79670535818955483d5327f3c65eb0 to your computer and use it in GitHub Desktop.
Save prafullakumar/ee79670535818955483d5327f3c65eb0 to your computer and use it in GitHub Desktop.
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