Restructure

This commit is contained in:
Philipp Heckel 2022-02-20 16:55:55 -05:00
parent 8c0f3b2304
commit c6c3caec39
7 changed files with 6 additions and 13 deletions

View file

@ -0,0 +1,19 @@
import { red } from '@mui/material/colors';
import { createTheme } from '@mui/material/styles';
// A custom theme for this app
const theme = createTheme({
palette: {
primary: {
main: '#338574',
},
secondary: {
main: '#6cead0',
},
error: {
main: red.A400,
},
},
});
export default theme;