Skip to content

Instantly share code, notes, and snippets.

@4knort
Last active March 28, 2019 20:53
Show Gist options
  • Save 4knort/93ed7289893320af6e3d9712a553dc06 to your computer and use it in GitHub Desktop.
Save 4knort/93ed7289893320af6e3d9712a553dc06 to your computer and use it in GitHub Desktop.
interface Themes {
[key:string]: {[key:string] : string}
}
const themes:Themes = {
blue: {
static: '#4687ed',
hover: '#589bfe',
active: '#1e4bb8',
color: '#fff'
},
red: {
static: '#e34345',
hover: '#f45052',
active: '#b12426',
color: '#fff'
},
orange: {
static: '#f6891b',
hover: '#f69b31',
active: '#d17516',
color: '#fff'
},
blueLight: {
static: '#e0e9f5',
hover: '#ccdcf2',
active: '#b6cdec',
color: '#004bb9'
},
grayLight: {
static: '#f0f3f7',
hover: '#e5e9f0',
active: '#d2d9e6',
color: '#000'
},
redLight: {
static: '#f4ddde',
hover: '#f0c9cc',
active: '#d2d9e6',
color: '#ed4040'
},
confirmed: '#e3f2d9',
error: '#f8e0e0',
disabled: '#eaebed'
};
interface ButtonProps {
theme: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment