add subtle color tint for sidebar

This commit is contained in:
Vishnu Sreekumaran Nair
2025-03-22 00:15:01 -04:00
parent 7dde4a74c9
commit 112f76dbf6
2 changed files with 7 additions and 0 deletions

View File

@@ -208,6 +208,7 @@ function Sidebar() {
borderRight: `1px solid ${theme.palette.primary.lowContrast}`,
borderColor: theme.palette.primary.lowContrast,
borderRadius: 0,
backgroundColor: theme.palette.primary.sidebar,
"& :is(p, span, .MuiListSubheader-root)": {
/*
Text color for unselected menu items and menu headings

View File

@@ -109,6 +109,8 @@ const newColors = {
red400: "#D92020",
red600: "#9B4B4B",
red700: "#980303",
sidebarLight: "#F9F9FB",
sidebarDark: "#1A1A1D",
};
/*
@@ -167,6 +169,10 @@ const newSemanticColors = {
light: newColors.gray200,
dark: newColors.blueGray600,
},
sidebar: {
light: newColors.sidebarLight,
dark: newColors.sidebarDark,
},
},
secondary: {
main: {