First commit

This commit is contained in:
2020-12-04 20:16:24 +01:00
commit cd65dd4443
12 changed files with 7155 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import {createMuiTheme} from '@material-ui/core/styles'
import {red} from '@material-ui/core/colors'
const theme = createMuiTheme({
palette: {
primary: {
main: '#556cd6'
},
secondary: {
main: '#19857b'
},
error: {
main: red.A400
},
background: {
default: '#fff'
}
}
})
export default theme