Skip to content

Instantly share code, notes, and snippets.

@evanjmg
Created May 21, 2019 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evanjmg/c5f34372119724c9a7420278c952ed2f to your computer and use it in GitHub Desktop.
Save evanjmg/c5f34372119724c9a7420278c952ed2f to your computer and use it in GitHub Desktop.
export interface IBaseColor {
// main colors
ACCENT: string
WHITE: string
SURFACE: string
PRIMARY: string
BACKGROUND: string,
ON_SURFACE: string
ON_BACKGROUND: string
HIGHLIGHTED_PRIMARY: string // highlighted primary is equalivalent on primary
HIGHLIGHTED_SURFACE: string
// ******** TERTIARY ****************//
SUCCESS: string
// *********** ALERTS **************** //
ALERT: string // alert
LIGHT_ALERT: string
BACKGROUND_ALERT: string
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment