mirror of
https://github.com/diced/zipline.git
synced 2025-04-11 23:31:17 -05:00
feat: change default theme from gray to blue
This commit is contained in:
parent
eb5117d7ee
commit
f2621572b0
1 changed files with 3 additions and 3 deletions
|
@ -42,14 +42,14 @@ export default function Theming({
|
|||
theme =
|
||||
systemTheme === 'dark'
|
||||
? (findTheme(user ? preferredDark : (defaultTheme?.dark ?? ''), themes) ??
|
||||
findTheme('builtin:dark_gray', themes))
|
||||
findTheme('builtin:dark_blue', themes))
|
||||
: (findTheme(user ? preferredLight : (defaultTheme?.light ?? ''), themes) ??
|
||||
findTheme('builtin:light_gray', themes));
|
||||
findTheme('builtin:light_blue', themes));
|
||||
}
|
||||
|
||||
if (!theme) {
|
||||
theme =
|
||||
findTheme('builtin:dark_gray') ??
|
||||
findTheme('builtin:dark_blue') ??
|
||||
({
|
||||
id: 'builtin:dark_gray',
|
||||
name: 'Dark Gray',
|
||||
|
|
Loading…
Add table
Reference in a new issue