diff --git a/frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx b/frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx
index ef6cb3add09..67ae307e394 100644
--- a/frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx
+++ b/frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx
@@ -33,12 +33,13 @@ export default function ActiveWorkspaces() {
if (loading) {
return (
);
}
diff --git a/frontend/src/index.css b/frontend/src/index.css
index 46357a531a3..c75a27842f0 100644
--- a/frontend/src/index.css
+++ b/frontend/src/index.css
@@ -5,7 +5,7 @@
:root {
/* Default theme */
--theme-bg-primary: #0e0f0f;
- --theme-bg-secondary: #1a1b1e;
+ --theme-bg-secondary: rgba(255, 255, 255, 0.05);
--theme-bg-sidebar: #0e0f0f;
--theme-bg-container: #0e0f0f;
--theme-text-primary: #ffffff;
@@ -13,6 +13,9 @@
--theme-sidebar-item-default: rgba(255, 255, 255, 0.1);
--theme-sidebar-item-selected: rgba(255, 255, 255, 0.3);
--theme-sidebar-item-hover: #3f3f42;
+ --theme-sidebar-subitem-default: rgba(255, 255, 255, 0.05);
+ --theme-sidebar-subitem-selected: rgba(255, 255, 255, 0.05);
+ --theme-sidebar-subitem-hover: rgba(255, 255, 255, 0.05);
--theme-sidebar-footer-icon: rgba(255, 255, 255, 0.1);
--theme-sidebar-footer-icon-hover: rgba(255, 255, 255, 0.2);
--theme-sidebar-border: rgba(255, 255, 255, 0.1);
@@ -28,6 +31,9 @@
--theme-sidebar-item-default: rgba(0, 0, 0, 0.1);
--theme-sidebar-item-selected: rgba(0, 0, 0, 0.2);
--theme-sidebar-item-hover: #e2e8f0;
+ --theme-sidebar-subitem-default: rgba(0, 0, 0, 0.1);
+ --theme-sidebar-subitem-selected: rgba(0, 0, 0, 0.05);
+ --theme-sidebar-subitem-hover: rgba(0, 0, 0, 0.05);
--theme-sidebar-footer-icon: rgba(0, 0, 0, 0.3);
--theme-sidebar-footer-icon-hover: rgba(0, 0, 0, 0.5);
--theme-sidebar-border: rgba(0, 0, 0, 0.1);
diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js
index 2eb046e8273..e1a3d9ece64 100644
--- a/frontend/tailwind.config.js
+++ b/frontend/tailwind.config.js
@@ -63,6 +63,11 @@ export default {
selected: 'var(--theme-sidebar-item-selected)',
hover: 'var(--theme-sidebar-item-hover)',
},
+ subitem: {
+ default: 'var(--theme-sidebar-subitem-default)',
+ selected: 'var(--theme-sidebar-subitem-selected)',
+ hover: 'var(--theme-sidebar-subitem-hover)',
+ },
footer: {
icon: 'var(--theme-sidebar-footer-icon)',
'icon-hover': 'var(--theme-sidebar-footer-icon-hover)',