| commit | 9ee3042aa7826d9ae662c86743a5f87468972d27 | [log] [tgz] |
|---|---|---|
| author | banksean <banksean@gmail.com> | Sat Jul 19 12:57:45 2025 -0700 |
| committer | banksean <banksean@gmail.com> | Sat Jul 19 12:57:45 2025 -0700 |
| tree | a669fecd906f39e504508cf2c8c31c3a26726322 | |
| parent | 3eaa43377ddaec484ea3564f178078a84dc6e02d [diff] [blame] |
default to light mode instead of system, for now
diff --git a/webui/src/web-components/theme-service.ts b/webui/src/web-components/theme-service.ts index f002572..c4bccfe 100644 --- a/webui/src/web-components/theme-service.ts +++ b/webui/src/web-components/theme-service.ts
@@ -84,7 +84,7 @@ if (saved === "light" || saved === "dark") { return saved; } - return "system"; + return "light"; // TODO: default to "system", once dark mode is ready. } /**