aboutsummaryrefslogtreecommitdiff
path: root/src/theme.js
blob: 941c9cd737c6936f4a5d7bf8225bc0a960930203 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { createMuiTheme } from '@material-ui/core/styles'

const theme = createMuiTheme({
  palette: {
    type: 'dark',
    primary: {
      main: '#0a0909',
    },
    secondary: {
      main: '#ff7315',
    },
    background: {
      default: '#232020',
      paper: '#0f0e0e',
    },
    text: {
      primary: '#f4f4f4',
      secondary: '#6f6666',
    }
  },
});

export default theme;