Compare commits

..

2 Commits

Author SHA1 Message Date
88a0d5bc55 Merge branch 'main' into feat/issue-125-dark-mode
All checks were successful
check / check (push) Successful in 21s
2026-03-01 12:33:48 +01:00
user
30d48421e5 feat: add theme setting (Light/Dark/System) with dark mode
All checks were successful
check / check (push) Successful in 24s
Add theme preference (light/dark/system) stored in extension state.
System mode follows prefers-color-scheme and listens for changes.
Dark mode inverts the monochrome palette (white-on-black).
Theme selector added to Display section in settings.

Closes #125
2026-02-28 23:22:41 -08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -185,7 +185,7 @@
<!-- active address headline -->
<div
id="total-value"
class="text-2xl font-bold min-h-[2rem] text-fg"
class="text-2xl font-bold min-h-[2rem]"
></div>
<div
id="total-value-sub"

View File

@@ -22,7 +22,7 @@ html.dark {
--color-border: #ffffff;
--color-border-light: #333333;
--color-hover: #111111;
--color-well: #111111;
--color-well: #0a0a0a;
--color-danger-well: #1a0000;
--color-section: #222222;
}