1
Fork 0
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:
diced 2025-02-01 16:12:43 -08:00
parent eb5117d7ee
commit f2621572b0
No known key found for this signature in database
GPG key ID: 370BD1BA142842D1

View file

@ -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',