diff --git a/src/app.css b/src/app.css
index 4c19da9..233d770 100644
--- a/src/app.css
+++ b/src/app.css
@@ -17,9 +17,9 @@
}
.weblah-dark-theme {
- --weblah-color-sb-primary: theme(colors.slate.950);
- --weblah-color-sb-secondary: theme(colors.slate.900);
- --weblah-color-sb-tertiary: theme(colors.slate.800);
+ --weblah-color-sb-primary: theme(colors.slate.900);
+ --weblah-color-sb-secondary: theme(colors.slate.950);
+ --weblah-color-sb-tertiary: theme(colors.black);
--weblah-color-sf-primary: theme(colors.slate.100);
--weblah-color-sf-secondary: theme(colors.slate.400);
@@ -38,9 +38,13 @@
}
@media (prefers-color-scheme: dark) {
- :not([data-weblah-color-scheme='light'] *) {
+ :root {
@apply weblah-dark-theme;
}
+
+ :is([data-weblah-color-scheme='light'] *) {
+ @apply weblah-light-theme;
+ }
}
}
diff --git a/src/routes/(app)/chats/[chatId]/ChatInput.svelte b/src/routes/(app)/chats/[chatId]/ChatInput.svelte
index c0c61c8..fc24c1b 100644
--- a/src/routes/(app)/chats/[chatId]/ChatInput.svelte
+++ b/src/routes/(app)/chats/[chatId]/ChatInput.svelte
@@ -25,7 +25,7 @@
Attach
-