mirror of
https://github.com/diced/zipline.git
synced 2025-05-11 18:36:02 +02:00
feat(theme): add midnight orange theme
This commit is contained in:
parent
ba6d5eb654
commit
3336f3ee7e
2 changed files with 36 additions and 0 deletions
33
src/lib/theme/builtins/midnight_orange.theme.json
Normal file
33
src/lib/theme/builtins/midnight_orange.theme.json
Normal 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"
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue