aboutsummaryrefslogtreecommitdiff
path: root/src/theme.js
blob: 54b289d22a036860cd5c50c4e98f101392597e6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React from 'react';
import { createMuiTheme } from '@material-ui/core/styles'


const theme = createMuiTheme({
  palette: {
    primary: {
      light: '#3a3535',
      main: '#232020',
    },
    secondary: {
      main: '#f4f4f4',
      dark: '#ff7315',
    },
  },
});

export default theme;