diff --git a/public/locales/en.json b/public/locales/en.json index b335f7c6..90f2ecec 100644 --- a/public/locales/en.json +++ b/public/locales/en.json @@ -1072,7 +1072,8 @@ "orange_juice": "Orange Juice", "rosegold": "Rosegold", "tree_frog_green": "Tree Frog Green", - "veronica": "Veronica" + "veronica": "Veronica", + "ying_and_yang": "Ying & Yang" }, "title": "Theme" }, diff --git a/src/modules/theme/Themes.ts b/src/modules/theme/Themes.ts index 8b84fea5..3714793b 100644 --- a/src/modules/theme/Themes.ts +++ b/src/modules/theme/Themes.ts @@ -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;