From 635c51cd6336f80adad0edabe69142e122b18e07 Mon Sep 17 00:00:00 2001 From: s0lray Date: Tue, 24 Mar 2026 07:58:04 -0400 Subject: [PATCH] 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 Co-Authored-By: Paperclip --- public/css/arf.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/public/css/arf.css b/public/css/arf.css index 8e93be0..3238f8b 100644 --- a/public/css/arf.css +++ b/public/css/arf.css @@ -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;