diff --git a/.changeset/sharp-hairs-itch.md b/.changeset/sharp-hairs-itch.md new file mode 100644 index 0000000..20a6e16 --- /dev/null +++ b/.changeset/sharp-hairs-itch.md @@ -0,0 +1,5 @@ +--- +"roo-cline": patch +--- + +Fix color for the light+ themes 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)