Skip to content

Commit 46f2c67

Browse files
authored
fix: use consistent gray background for ActionSelector in light mode (#1581)
### Problem The ActionSelector container used hardcoded blue theme colors (`blue-1` background, `blue-11` border) which looked inconsistent with the rest of the app in light mode. Other panels (signal cards, detail panes) use `gray-1`/`gray-6`. ### Fix Changed container background from `var(--blue-1)` → `var(--gray-1)` and border from `var(--blue-11)` → `var(--gray-6)` to match the rest of the app. Interactive elements (selected state, step tabs) still use blue accent colors for emphasis. Fixes #1556
1 parent f838532 commit 46f2c67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/code/src/renderer/components/action-selector/ActionSelector.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@ export function ActionSelector({
214214
}}
215215
style={{
216216
outline: "none",
217-
border: "1px solid var(--blue-11)",
218-
background: "var(--blue-1)",
217+
border: "1px solid var(--gray-6)",
218+
background: "var(--gray-1)",
219219
borderRadius: "var(--radius-3)",
220220
}}
221221
>

0 commit comments

Comments
 (0)