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