From c5bf17e94164096043f72a8a453abc4968947dfd Mon Sep 17 00:00:00 2001 From: reverb256 Date: Thu, 9 Apr 2026 01:31:37 -0500 Subject: [PATCH] fix: use consistent gray background for ActionSelector in light mode The ActionSelector container used hardcoded blue theme colors (blue-1/blue-11) for background/border which looked inconsistent in light mode. Changed to gray-1/gray-6 to match the rest of the app. Interactive elements (selected state, step tabs) still use blue accent colors for emphasis. Fixes #1556 Signed-off-by: reverb256 --- .../renderer/components/action-selector/ActionSelector.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/code/src/renderer/components/action-selector/ActionSelector.tsx b/apps/code/src/renderer/components/action-selector/ActionSelector.tsx index 3ad45068d..a2b1fe3f3 100644 --- a/apps/code/src/renderer/components/action-selector/ActionSelector.tsx +++ b/apps/code/src/renderer/components/action-selector/ActionSelector.tsx @@ -214,8 +214,8 @@ export function ActionSelector({ }} style={{ outline: "none", - border: "1px solid var(--blue-11)", - background: "var(--blue-1)", + border: "1px solid var(--gray-6)", + background: "var(--gray-1)", borderRadius: "var(--radius-3)", }} >