1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { amber, grey, green, indigo, red } from '@mui/material/colors';
import { common } from '@mui/material/colors';
export default {
background: {
default: grey[50],
},
primary: {
main: indigo[900],
},
secondary: {
main: green[500],
contrastText: common.white,
},
colors: {
white: common.white,
positive: green[500],
medium: amber[700],
negative: red[500],
neutral: grey[500],
},
};
|