Compare commits

..
2 Commits
Author SHA1 Message Date
sneak 88a0d5bc55 Merge branch 'main' into feat/issue-125-dark-mode
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
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
+1 -1
View File
@@ -185,7 +185,7 @@
<!-- active address headline --> <!-- active address headline -->
<div <div
id="total-value" id="total-value"
class="text-2xl font-bold min-h-[2rem] text-fg" class="text-2xl font-bold min-h-[2rem]"
></div> ></div>
<div <div
id="total-value-sub" id="total-value-sub"
+1 -1
View File
@@ -22,7 +22,7 @@ html.dark {
--color-border: #ffffff; --color-border: #ffffff;
--color-border-light: #333333; --color-border-light: #333333;
--color-hover: #111111; --color-hover: #111111;
--color-well: #111111; --color-well: #0a0a0a;
--color-danger-well: #1a0000; --color-danger-well: #1a0000;
--color-section: #222222; --color-section: #222222;
} }