You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
540 B
TypeScript
23 lines
540 B
TypeScript
6 years ago
|
const THEMES_CONFIG = {
|
||
|
'default': {
|
||
|
'key': 'default',
|
||
|
'background_color': 'ghostwhite',
|
||
|
'css_label': 'default-theme',
|
||
|
'social_theme': 'material-light'
|
||
|
},
|
||
|
'dark': {
|
||
|
'key': 'dark',
|
||
|
'background_color': '#757575',
|
||
|
'css_label': 'dark-theme',
|
||
|
'social_theme': 'material-dark'
|
||
|
},
|
||
|
'light': {
|
||
|
'key': 'light',
|
||
|
'background_color': 'white',
|
||
|
'css_label': 'light-theme',
|
||
|
'social_theme': 'material-light'
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export {THEMES_CONFIG};
|