mirror of
https://github.com/diced/zipline.git
synced 2026-01-10 20:24:16 -08:00
24 lines
415 B
TypeScript
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;
|