fullstrapp
Version:
Bootstrap a scalable full stack application with pre-configured: hosting, database, authentication, analytics, CI, CD, code templates, and issue templates.
22 lines (18 loc) • 388 B
text/typescript
import createMuiTheme from '@material-ui/core/styles/createMuiTheme'
// https://material-ui.com/customization/themes/#themes
const theme = createMuiTheme({
palette: {
// primary: color1,
// secondary: color2,
// error: color3
},
overrides: {
MuiToolbar: {
gutters: {
paddingLeft: 4,
paddingRight: 4
}
}
}
})
export default theme