From 5cb84d19ea9088e04cf9e0596e7562aba1f6be95 Mon Sep 17 00:00:00 2001 From: akasai Date: Wed, 29 Apr 2026 11:29:29 +0900 Subject: [PATCH] Apply valueColor to percentage values instead of headerColor --- src/tui.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tui.tsx b/src/tui.tsx index a03fee2..7d2371a 100644 --- a/src/tui.tsx +++ b/src/tui.tsx @@ -135,10 +135,10 @@ const tui: TuiPlugin = async (api, rawOptions, _meta) => { const pct = w.utilization const reset = w.resetsAt const label = windowLabel(key) - const pctColor = pct === null ? fg + const pctColor = pct === null ? valueFg : pct >= 80 ? CLAUDE_ORANGE : pct >= 51 ? "#F0A875" - : fg + : valueFg const resetStr = formatRelativeTime(reset) return (