Skip to content

Commit ddf7a7f

Browse files
committed
Update UI color
1 parent d64770d commit ddf7a7f

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

src/renderer/components/pages/ChatInputPage.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ const agentStore = useAgentStore()
9898

9999
<v-icon-btn
100100
v-tooltip:start="$t('chat.reg')"
101-
color="primary"
101+
color="teal"
102102
variant="tonal"
103103
icon="mdi-autorenew"
104104
rounded="lg"

src/renderer/components/pages/SettingPage.vue

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,14 @@ const validateNumberRange = (min: number, max: number) => {
9595
<v-checkbox
9696
:model-value="config.mcp"
9797
:label="$t('setting.mcp')"
98-
color="primary"
98+
color="secondary"
9999
@update:model-value="(v) => handleUpdate('mcp', Boolean(v))"
100100
>
101101
</v-checkbox>
102102
<v-checkbox
103103
:model-value="config.stream"
104104
:label="$t('setting.stream')"
105-
color="primary"
105+
color="secondary"
106106
@update:model-value="(v) => handleUpdate('stream', Boolean(v))"
107107
>
108108
</v-checkbox>
@@ -169,10 +169,11 @@ const validateNumberRange = (min: number, max: number) => {
169169

170170
<v-row class="px-2">
171171
<v-switch
172+
min-width="170px"
172173
class="mt-0 mb-6 ml-4"
173174
v-tooltip:start="$t('setting.auth-header')"
174175
:label="config.authorization ? 'Authorization' : 'X-Api-Key'"
175-
color="info"
176+
color="secondary"
176177
base-color="primary"
177178
hide-details
178179
inset
@@ -285,7 +286,7 @@ const validateNumberRange = (min: number, max: number) => {
285286
</template>
286287
<v-btn-toggle
287288
class="mt-0"
288-
color="info"
289+
color="secondary"
289290
:model-value="config.reasoningEffort"
290291
variant="plain"
291292
@update:model-value="(v) => handleUpdate('reasoningEffort', v)"

src/renderer/plugins/vuetify.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default createVuetify({
3535
primary: '#344767',
3636
background: '#FFFFFF',
3737
surface: '#FFFFFF',
38-
secondary: '#2B323B',
38+
secondary: colors.lightBlue.darken4, // '#2B323B',
3939
alert: colors.brown.lighten1,
4040
'grey-0': '#F2F5F8',
4141
'grey-50': '#FAFAFA',

src/renderer/screens/mcp/McpSideDrawer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const mcpStore = useMcpStore()
3939
:key="`${key}-${name}`"
4040
class="mr-1 my-1"
4141
label
42-
color="info"
42+
color="secondary"
4343
size="small"
4444
>
4545
{{ name }}

0 commit comments

Comments
 (0)