Created the light.js theme

This commit is contained in:
Mathias Wagner 2024-02-15 18:25:12 +01:00
parent b8cb17a340
commit 9f67e08f92
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,64 @@
import { createTheme } from '@mui/material/styles';
const theme = createTheme({
palette: {
mode: 'light',
primary: {
main: '#ab47bc',
},
background: {
card: '#f1f1f1',
default: '#F4F6F8',
darker: "#ffffff",
}
},
components: {
MuiAppBar: {
styleOverrides: {
root: {
backgroundColor: '#ffffff'
}
}
},
MuiTypography: {
styleOverrides: {
root: {
color: '#000000'
}
}
},
MuiListItemButton: {
styleOverrides: {
root: {
borderRadius: 15,
margin: 4,
marginLeft: 7,
marginRight: 7
}
}
},
MuiCssBaseline: {
styleOverrides: {
body: {
"&::-webkit-scrollbar, & *::-webkit-scrollbar": {
width: 8,
},
"&::-webkit-scrollbar-thumb, & *::-webkit-scrollbar-thumb": {
borderRadius: 8,
minHeight: 24,
backgroundColor: "#adadb0",
},
"&::-webkit-scrollbar-thumb:hover, & *::-webkit-scrollbar-thumb:hover": {
backgroundColor: "#3B3A4A"
}
},
},
},
},
shape: {
borderRadius: 10,
}
});
export default theme;