fix: restore dark theme and fix theme script regex

Dark theme was set to "dim" in theme.config.ts while app.css registered
"sunset" as the prefersdark theme. The script's regex required a trailing
comma that didn't exist on the last property, causing silent failures.
This commit is contained in:
Julien Calixte
2026-04-08 19:01:29 +02:00
parent a05ff9f238
commit 541e058d12
2 changed files with 3 additions and 3 deletions

View File

@@ -3,5 +3,5 @@
export const themeConfig = {
light: "garden",
dark: "dim"
dark: "sunset"
}