mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-11 07:10:56 +03:00
25 lines
613 B
TypeScript
25 lines
613 B
TypeScript
const THEMES_CONFIG = {
|
|
'default': {
|
|
'key': 'default',
|
|
'background_color': 'ghostwhite',
|
|
'alternate_color': 'gray',
|
|
'css_label': 'default-theme',
|
|
'social_theme': 'material-light'
|
|
},
|
|
'dark': {
|
|
'key': 'dark',
|
|
'background_color': '#141414',
|
|
'alternate_color': '#695959',
|
|
'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};
|