mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-07 20:10:03 +03:00
33 lines
905 B
TypeScript
33 lines
905 B
TypeScript
const THEMES_CONFIG = {
|
|
'default': {
|
|
'key': 'default',
|
|
'background_color': 'ghostwhite',
|
|
'alternate_color': 'gray',
|
|
'ghost_primary': '#f9f9f9',
|
|
'ghost_secondary': '#ecebeb',
|
|
'drawer_color': '#fafafa',
|
|
'css_label': 'default-theme',
|
|
'social_theme': 'material-light'
|
|
},
|
|
'dark': {
|
|
'key': 'dark',
|
|
'background_color': '#141414',
|
|
'alternate_color': '#695959',
|
|
'ghost_primary': '#444444',
|
|
'ghost_secondary': '#141414',
|
|
'drawer_color': '#303030',
|
|
'css_label': 'dark-theme',
|
|
'social_theme': 'material-dark'
|
|
},
|
|
'light': {
|
|
'key': 'light',
|
|
'background_color': 'white',
|
|
'ghost_primary': '#f9f9f9',
|
|
'ghost_secondary': '#ecebeb',
|
|
'css_label': 'light-theme',
|
|
'social_theme': 'material-light'
|
|
}
|
|
};
|
|
|
|
export {THEMES_CONFIG};
|