+
diff --git a/src/renderer/src/assets/style.css b/src/renderer/src/assets/style.css
index fd21a079e..8af21b49c 100644
--- a/src/renderer/src/assets/style.css
+++ b/src/renderer/src/assets/style.css
@@ -59,19 +59,19 @@
--container: var(--white);
--background: var(--white);
- --foreground: var(--base-800);
+ --foreground: hsl(0 0 15% / 1);
--card: hsl(0 0% 100%);
- --card-foreground: var(--base-800);
+ --card-foreground: hsl(0 0 15% / 1);
--popover: hsl(0 0% 100%);
- --popover-foreground: var(--base-800);
+ --popover-foreground: hsl(0 0 15% / 1);
--primary: hsl(210 100% 43%);
--primary-foreground: hsl(0 0% 100%);
- --secondary: var(--base-200);
- --secondary-foreground: var(--base-700);
+ --secondary: hsl(0 0 0% / 0.05);
+ --secondary-foreground: hsl(0 0 15% / 0.5);
--muted: hsl(0 0 0% / 0.03);
- --muted-foreground: var(--base-400);
+ --muted-foreground: hsl(0 0 15% / 0.5);
--accent: hsl(0 0 15% / 0.05);
- --accent-foreground: hsl(0 0 15% / 0.05);
+ --accent-foreground: hsl(0 0 15% / 0.8);
--destructive: hsl(0 84.2% 60.2%);
--destructive-foreground: hsl(0 0% 98%);
/* --border: var(--base-200); */
@@ -152,7 +152,7 @@
--secondary: hsl(0 0 15% / 0.8);
--secondary-foreground: var(--base-50);
--muted: hsl(0 0 100% / 0.03);
- --muted-foreground: var(--base-500);
+ --muted-foreground: hsl(0 0 100% / 0.2);
--accent: hsl(0 0 100% / 0.05);
--accent-foreground: hsl(0 0 100% / 0.8);
--destructive: hsl(0 62.8% 30.6%);
@@ -210,7 +210,7 @@
--secondary: hsl(0 0 15% / 0.8);
--secondary-foreground: hsl(0 0 100%);
--muted: hsl(0 0 100% / 0.03);
- --muted-foreground: var(--base-500);
+ --muted-foreground: hsl(0 0 100% / 0.2);
--accent: hsl(0 0 100% / 0.05);
--accent-foreground: hsl(0 0 100% / 0.8);
--destructive: hsl(0 62.8% 30.6%);
diff --git a/src/renderer/src/components/message/MessageList.vue b/src/renderer/src/components/message/MessageList.vue
index aef97ffcc..1b8dd4402 100644
--- a/src/renderer/src/components/message/MessageList.vue
+++ b/src/renderer/src/components/message/MessageList.vue
@@ -54,15 +54,14 @@
v-if="showCancelButton"
key="cancel"
variant="outline"
- size="sm"
- class="rounded-lg"
+ size="icon"
+ class="w-8 h-8 shrink-0 opacity-100 bg-card backdrop-blur-lg z-20"
@click="handleCancel"
>
- {{ t('common.cancel') }}
@@ -74,7 +73,7 @@
class="w-8 h-8 shrink-0 opacity-100 bg-card backdrop-blur-lg z-20"
@click="createNewThread"
>
-
+
@@ -87,7 +86,7 @@
class="w-8 h-8 shrink-0 relative z-10 backdrop-blur-lg"
@click="scrollToBottom(true)"
>
-
+
diff --git a/src/renderer/src/components/prompt-input/PromptInput.vue b/src/renderer/src/components/prompt-input/PromptInput.vue
index 9919930b1..d81f640e8 100644
--- a/src/renderer/src/components/prompt-input/PromptInput.vue
+++ b/src/renderer/src/components/prompt-input/PromptInput.vue
@@ -77,7 +77,7 @@
:class="[
'flex w-7 border-none rounded-none shadow-none items-center gap-1.5 px-2 h-full text-foreground ',
settings.webSearch
- ? 'dark:!bg-primary text-primary-foreground hover:bg-primary/90 hover:text-primary-foreground'
+ ? 'dark:!bg-primary hover:bg-primary/90 hover:text-primary-foreground'
: 'dark:text-white/70'
]"
:dir="langStore.dir"