-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.tsx
48 lines (45 loc) · 937 Bytes
/
theme.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import { createTheme } from "@mui/material/styles";
const colors = {
primary: {
main: "#ff0000",
contrastText: "#fff",
},
secondary: {
main: "#f50057",
contrastText: "#fff",
},
};
const theme = createTheme({
palette: {
background: {
// default: "#fff",
},
primary: {
main: "#ff0000",
contrastText: "#fff",
},
secondary: {
main: "#f50057",
contrastText: "#fff",
},
},
components: {
MuiListItemButton: {
styleOverrides: {
root: {
"&.Mui-selected": {
backgroundColor: colors.primary.main,
color: colors.primary.contrastText,
"& .MuiListItemIcon-root": {
color: colors.primary.contrastText,
},
},
"&.Mui-selected:hover": {
backgroundColor: colors.primary.main,
},
},
},
},
},
});
export default theme;