feat(theme): add midnight orange theme

This commit is contained in:
curet 2025-03-17 08:20:56 +01:00
parent ba6d5eb654
commit 3336f3ee7e
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{
"name": "Midnight Orange",
"id": "builtin:midnight_orange",
"colorScheme": "dark",
"colors": {
"blue": [
"#666666",
"#f5994b",
"#f48c35",
"#f3801f",
"#f3801f",
"#181818",
"#191919",
"#3742AA",
"#181818",
"#191919"
],
"dark": [
"#FFFFFF",
"#999999",
"#a8a8a8",
"#666666",
"#282828",
"#181818",
"#151515",
"#111111",
"#181818",
"#00001E"
]
},
"primaryColor": "blue",
"mainBackgroundColor": "#0a0a0a"
}

View file

@ -15,6 +15,8 @@ import cat_latte from './builtins/catppuccin_latte.theme.json';
import cat_macchiato from './builtins/catppuccin_macchiato.theme.json';
import cat_mocha from './builtins/catppuccin_mocha.theme.json';
import midnight_orange from './builtins/midnight_orange.theme.json';
import { log } from '../logger';
const THEMES_DIR = './themes';
@ -48,6 +50,7 @@ export async function readThemes(): Promise<ZiplineTheme[]> {
handleOverrideColors(cat_latte as unknown as ZiplineTheme),
handleOverrideColors(cat_macchiato as unknown as ZiplineTheme),
handleOverrideColors(cat_mocha as unknown as ZiplineTheme),
handleOverrideColors(midnight_orange as unknown as ZiplineTheme),
);
return parsedThemes;