From 3bda7215dba480dd75b33e2f4b5e9f70bb55e638 Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Fri, 13 Mar 2026 12:29:05 +0100 Subject: [PATCH] fix: stat label invisible on light mode when selected The active metric label (e.g. UNIQUE VISITORS) was white on a near-white background. Switch to brand orange for visibility in both themes. --- components/dashboard/Chart.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/dashboard/Chart.tsx b/components/dashboard/Chart.tsx index d4db745..0ac9ea1 100644 --- a/components/dashboard/Chart.tsx +++ b/components/dashboard/Chart.tsx @@ -351,7 +351,7 @@ export default function Chart({ metric === m.key && 'bg-neutral-50 dark:bg-neutral-800/40', )} > -
{m.label}
+
{m.label}
{m.format(m.value)} {m.change !== null && (