diff --git a/src/renderer/src/pages/home/Inputbar/ThinkingButton.tsx b/src/renderer/src/pages/home/Inputbar/ThinkingButton.tsx index 898a12bb4d..1ceb2cc52e 100644 --- a/src/renderer/src/pages/home/Inputbar/ThinkingButton.tsx +++ b/src/renderer/src/pages/home/Inputbar/ThinkingButton.tsx @@ -73,7 +73,7 @@ const ThinkingButton: FC = ({ ref, model, assistant, ToolbarButton }): Re }, [currentReasoningEffort, supportedOptions, updateAssistantSettings, model.id]) const createThinkingIcon = useCallback((option?: ThinkingOption, isActive: boolean = false) => { - const iconColor = isActive ? 'var(--color-link)' : 'var(--color-icon)' + const iconColor = isActive ? 'var(--color-primary)' : 'var(--color-icon)' switch (true) { case option === 'minimal': diff --git a/src/renderer/src/pages/home/Inputbar/WebSearchButton.tsx b/src/renderer/src/pages/home/Inputbar/WebSearchButton.tsx index 44fe80cbec..5f3b4b00a6 100644 --- a/src/renderer/src/pages/home/Inputbar/WebSearchButton.tsx +++ b/src/renderer/src/pages/home/Inputbar/WebSearchButton.tsx @@ -137,7 +137,7 @@ const WebSearchButton: FC = ({ ref, assistant, ToolbarButton }) => {