fix(ui): replace blue-tinted dark mode palette with neutral dark grays

Board feedback: dark mode looked blue rather than properly dark.
Changed backgrounds from navy (#1a1a2e, #16213e) to neutral darks
(#1a1a1a, #2d2d2d), node fills to gray (#3a3a3a), and node stroke
to steelblue to match light mode styling.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
s0lray
2026-03-24 07:58:04 -04:00
co-authored by Claude Opus 4.6 Paperclip
parent b2cd803130
commit 635c51cd63
+7 -7
View File
@@ -1,13 +1,13 @@
/* === Color tokens === */
:root {
--color-bg: #1a1a2e;
--color-surface: #16213e;
--color-bg: #1a1a1a;
--color-surface: #2d2d2d;
--color-text-primary: #e0e0e0;
--color-text-secondary: #888;
--color-node-stroke: #4a9eff;
--color-node-fill-branch: #2a4a7f;
--color-node-fill-leaf: #1a1a2e;
--color-link: #444;
--color-text-secondary: #999;
--color-node-stroke: steelblue;
--color-node-fill-branch: #3a3a3a;
--color-node-fill-leaf: #1a1a1a;
--color-link: #555;
--color-noscript-bg: #2a1a00;
--color-noscript-border: #7a4a00;
--color-legend: #e0e0e0;