From 14d0b69c79760fb744a3968fba2de1fdf3a74f02 Mon Sep 17 00:00:00 2001 From: Joe Manley Date: Tue, 14 Jan 2025 14:58:24 -0800 Subject: [PATCH] Fix icon color - light theme --- webview-ui/src/components/settings/SettingsView.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webview-ui/src/components/settings/SettingsView.tsx b/webview-ui/src/components/settings/SettingsView.tsx index 17467ea..88731c6 100644 --- a/webview-ui/src/components/settings/SettingsView.tsx +++ b/webview-ui/src/components/settings/SettingsView.tsx @@ -556,7 +556,8 @@ const SettingsView = ({ onDone }: SettingsViewProps) => { minWidth: '20px', display: 'flex', alignItems: 'center', - justifyContent: 'center' + justifyContent: 'center', + color: 'var(--vscode-button-foreground)', }} onClick={() => { const newCommands = (allowedCommands ?? []).filter((_, i) => i !== index)