Files
pawol.nu/src/theme.js
T

22 lines
366 B
JavaScript
Raw Normal View History

2022-01-19 07:06:26 +04:00
import {createTheme, adaptV4Theme} from '@mui/material/styles'
import {red} from '@mui/material/colors'
2020-12-04 20:16:24 +01:00
2022-01-19 07:06:26 +04:00
const theme = createTheme(adaptV4Theme({
2020-12-04 20:16:24 +01:00
palette: {
primary: {
main: '#556cd6'
},
secondary: {
main: '#19857b'
},
error: {
main: red.A400
},
background: {
default: '#fff'
}
}
2022-01-19 07:06:26 +04:00
}))
2020-12-04 20:16:24 +01:00
export default theme