Created
March 24, 2020 17:40
-
-
Save EyalPerry/4a165b40aeb76e9bcf4d82d892d77aab to your computer and use it in GitHub Desktop.
Component Colors
This file contains 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
export interface ColorSchemes | |
{ | |
light: ComponentPalletes: | |
dark: ComponentPalletes; | |
} | |
export interface ComponentPalletes | |
{ | |
button: ButtonPalletes; | |
... | |
} | |
export interface ButtonPalletes { | |
primary: Pallete; | |
secondary: Pallete; | |
destructive: Pallete; | |
} | |
export interface Pallete { | |
backgroundColor: string; | |
color: string; | |
borderColor: string; | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment