Files
zipline/src/lib/theme.ts
dicedtomatoreal 10b1d018f3 t
2020-10-02 21:45:09 -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;