aboutsummaryrefslogtreecommitdiff
path: root/src/lib/theme.js
blob: 3c671e609323528503ff228a2ed1a5235e4007e9 (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 { createMuiTheme } from '@material-ui/core/styles'

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

export default theme;