diff --git a/ell-studio/src/components/Sidebar.js b/ell-studio/src/components/Sidebar.js
index d6bc1cbf..80ad504d 100644
--- a/ell-studio/src/components/Sidebar.js
+++ b/ell-studio/src/components/Sidebar.js
@@ -12,7 +12,7 @@ const Sidebar = () => {
to={to}
className={({ isActive }) => `
group flex items-center py-3 px-4 rounded-lg transition-all duration-200
- ${isActive ? 'bg-primary/10 text-primary' : 'text-muted-foreground hover:text-foreground'}
+ ${isActive ? 'bg-accent text-accent-foreground' : 'text-muted-foreground hover:text-foreground hover:bg-accent/50'}
`}
>
Loading...
+ returnLoading...
- {lmp.source.length > 100 ? `${lmp.source.substring(0, 100)}...` : lmp.source}
+
+
+ {lmp.source.length > 100 ? `${lmp.source.substring(0, 100)}...` : lmp.source}
diff --git a/ell-studio/src/styles/globals.css b/ell-studio/src/styles/globals.css
index 9418614b..a1cebeff 100644
--- a/ell-studio/src/styles/globals.css
+++ b/ell-studio/src/styles/globals.css
@@ -4,27 +4,49 @@
@layer base {
:root {
- --background: 222.2 84% 4.9%;
- --foreground: 210 40% 98%;
- --card: 222.2 84% 4.9%;
- --card-foreground: 210 40% 98%;
- --popover: 222.2 84% 4.9%;
- --popover-foreground: 210 40% 98%;
- --primary: 217.2 91.2% 59.8%;
- --primary-foreground: 222.2 47.4% 11.2%;
- --secondary: 217.2 32.6% 17.5%;
+ --background: 224 71% 4%;
+ --foreground: 213 31% 91%;
+ --card: 224 71% 4%;
+ --card-foreground: 213 31% 91%;
+ --popover: 224 71% 4%;
+ --popover-foreground: 213 31% 91%;
+ --primary: 210 40% 98%;
+ --primary-foreground: 222.2 47.4% 1.2%;
+ --secondary: 222.2 47.4% 11.2%;
--secondary-foreground: 210 40% 98%;
- --muted: 217.2 32.6% 17.5%;
- --muted-foreground: 215 20.2% 65.1%;
- --accent: 217.2 32.6% 17.5%;
+ --muted: 223 47% 11%;
+ --muted-foreground: 215.4 16.3% 56.9%;
+ --accent: 216 34% 17%;
--accent-foreground: 210 40% 98%;
- --destructive: 0 62.8% 30.6%;
+ --destructive: 0 63% 31%;
--destructive-foreground: 210 40% 98%;
- --border: 217.2 32.6% 17.5%;
- --input: 217.2 32.6% 17.5%;
- --ring: 224.3 76.3% 48%;
+ --border: 216 34% 17%;
+ --input: 216 34% 17%;
+ --ring: 216 34% 17%;
--radius: 0.5rem;
}
+
+ .dark {
+ --background: 224 71% 4%;
+ --foreground: 213 31% 91%;
+ --card: 224 71% 4%;
+ --card-foreground: 213 31% 91%;
+ --popover: 224 71% 4%;
+ --popover-foreground: 213 31% 91%;
+ --primary: 210 40% 98%;
+ --primary-foreground: 222.2 47.4% 1.2%;
+ --secondary: 222.2 47.4% 11.2%;
+ --secondary-foreground: 210 40% 98%;
+ --muted: 223 47% 11%;
+ --muted-foreground: 215.4 16.3% 56.9%;
+ --accent: 216 34% 17%;
+ --accent-foreground: 210 40% 98%;
+ --destructive: 0 63% 31%;
+ --destructive-foreground: 210 40% 98%;
+ --border: 216 34% 17%;
+ --input: 216 34% 17%;
+ --ring: 216 34% 17%;
+ }
}
@layer base {