mirror of
https://github.com/qwertyforce/scenery.git
synced 2025-05-02 13:39:40 +00:00
19 lines
344 B
TypeScript
19 lines
344 B
TypeScript
import { createMuiTheme } from '@material-ui/core/styles';
|
|
import { red } from '@material-ui/core/colors';
|
|
|
|
// Create a theme instance.
|
|
const theme = createMuiTheme({
|
|
palette: {
|
|
primary: {
|
|
main: '#556cd6',
|
|
},
|
|
secondary: {
|
|
main: '#f44336',
|
|
},
|
|
error: {
|
|
main: red.A400,
|
|
}
|
|
},
|
|
});
|
|
|
|
export default theme; |