From b2cd803130c4db8b75f10f20d9a112331eafcfa8 Mon Sep 17 00:00:00 2001 From: s0lray Date: Tue, 24 Mar 2026 07:29:22 -0400 Subject: [PATCH] fix(ui): improve light mode secondary text contrast to meet WCAG AA #767676 on white = 4.54:1, just above the 4.5:1 AA threshold. #999 (previous value) was 2.85:1, which failed. Closes THE-37. Co-Authored-By: Paperclip --- public/css/arf.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/css/arf.css b/public/css/arf.css index fbbbf39..8e93be0 100644 --- a/public/css/arf.css +++ b/public/css/arf.css @@ -18,7 +18,7 @@ body.light-mode { --color-bg: #ffffff; --color-surface: #f5f5f5; --color-text-primary: #000000; - --color-text-secondary: #999; + --color-text-secondary: #767676; --color-node-stroke: steelblue; --color-node-fill-branch: lightsteelblue; --color-node-fill-leaf: #ffffff;