Add "ying & yang" theme

This commit is contained in:
schroda
2025-01-17 00:29:03 +01:00
parent f7b21b1d7f
commit 5391bc256d
2 changed files with 30 additions and 1 deletions

View File

@@ -380,4 +380,32 @@ export const themes = {
},
},
},
'ying and yang': {
isCustom: false,
getName: () => translate('settings.appearance.theme.themes.ying_and_yang'),
muiTheme: {
colorSchemes: {
light: {
palette: {
primary: {
main: '#000',
},
secondary: {
main: '#fff',
},
},
},
dark: {
palette: {
primary: {
main: '#fff',
},
secondary: {
main: '#000',
},
},
},
},
},
},
} as const satisfies Record<string, TBaseTheme>;