aboutsummaryrefslogtreecommitdiff
path: root/modern/src/common/theme/palette.js
blob: 1ef57713e500ca59872d9d698b312a776881efd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import {
  amber, grey, green, indigo, red, 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],
    geometry: '#3bb2d0',
  },
};