From 5f6698b9da2b731a20348f3fb9aae78511151937 Mon Sep 17 00:00:00 2001 From: David Hill Date: Wed, 18 Feb 2026 12:35:08 +0000 Subject: [PATCH] tui: simplify mode toggle icon styling Use consistent strong color for active mode icons instead of different colors for shell vs normal mode, making the active state more visually clear to users. --- packages/app/src/components/prompt-input.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/app/src/components/prompt-input.tsx b/packages/app/src/components/prompt-input.tsx index dcd5bd2f10..1ca085a428 100644 --- a/packages/app/src/components/prompt-input.tsx +++ b/packages/app/src/components/prompt-input.tsx @@ -1375,8 +1375,7 @@ export const PromptInput: Component = (props) => { name={mode === "shell" ? "console" : "prompt"} class="size-[18px]" classList={{ - "text-icon-strong-base": mode === "shell" && store.mode === "shell", - "text-icon-interactive-base": mode === "normal" && store.mode === "normal", + "text-icon-strong-base": store.mode === mode, "text-icon-weak": store.mode !== mode, }} />