Files
zipline/src/lib/theme.ts
dicedtomatoreal bc54e00a14 eslinting
2020-10-06 21:30:31 -07:00

24 lines
415 B
TypeScript

import { createMuiTheme } from '@material-ui/core/styles';
import { red } from '@material-ui/core/colors';
// Create a theme instance.
const theme = createMuiTheme({
palette: {
type: 'dark',
primary: {
main: '#556cd6',
},
secondary: {
main: '#19857b',
},
error: {
main: red.A100,
},
background: {
default: '#121212',
},
},
});
export default theme;