summaryrefslogtreecommitdiff
path: root/blocks/eda-frontend/src/theme.js
blob: ebfedff520106b2c933b302b2bf33def745f2790 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { red } from '@material-ui/core/colors'
import { createTheme } from '@material-ui/core/styles'

// A custom Material UI theme for this application
const theme = createTheme({
  palette: {
    primary: {
      main: '#556cd6'
    },
    secondary: {
      main: '#19857b'
    },
    error: {
      main: red.A400
    },
    background: {
      default: '#fff'
    }
  }
})

export default theme