Newer
Older
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
49
50
51
52
53
54
import { createTheme } from '@mui/material'
export const theme = createTheme({
palette: {
mode: 'dark',
primary: {
main: '#F1C017',
contrastText: '#000',
},
},
components: {
MuiButton: {
defaultProps: {
variant: 'contained',
},
styleOverrides: {
root: {
fontWeight: 700,
minWidth: 130,
},
},
},
MuiTextField: {
defaultProps: {
size: 'small',
fullWidth: true,
},
styleOverrides: {
root: {
maxWidth: '600px',
},
},
},
MuiSwitch: {
styleOverrides: {
track: {
backgroundColor: '#7B7B7B',
'.Mui-checked.Mui-checked + &': {
backgroundColor: '#DCBA4A',
opacity: 1,
},
},
},
},
MuiDialog: {
styleOverrides: {
paper: {
padding: '1rem',
maxWidth: '700px',
},
},
},
},
})