refactor(theme): change default light theme to sepia

- Update default from paper-white to sepia for warmer reading
- Midnight remains default for dark mode
- Sepia provides warm, eye-friendly tones for light mode
This commit is contained in:
Gigi
2025-10-14 10:00:21 +02:00
parent 3f8869fd75
commit 689963c041
4 changed files with 4 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ export function getSystemTheme(): 'dark' | 'light' {
export function applyTheme(
theme: Theme,
darkColorTheme: DarkColorTheme = 'midnight',
lightColorTheme: LightColorTheme = 'paper-white'
lightColorTheme: LightColorTheme = 'sepia'
): void {
const root = document.documentElement