From cc86a64bb57bfa4361eafdaa31bdda29cf8b52ee 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 dcd5bd2f1..1ca085a42 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, }} />