fix: improve dark mode contrast for wells and balance display
All checks were successful
check / check (push) Successful in 10s

- Change dark mode --color-well from #0a0a0a to #111111 for visible
  contrast against #000000 background
- Add explicit text-fg class to balance display element to ensure
  white text in dark mode
This commit is contained in:
user 2026-03-01 03:38:27 -08:00
parent 2bdb547995
commit be06bd8f0c
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]"
class="text-2xl font-bold min-h-[2rem] text-fg"
></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: #0a0a0a;
--color-well: #111111;
--color-danger-well: #1a0000;
--color-section: #222222;
}