WIP: React

This commit is contained in:
Philipp Heckel 2022-02-18 09:49:51 -05:00
parent ce9e9f3e0d
commit 4c4e689af4
20 changed files with 31671 additions and 0 deletions

19
web/src/theme.js Normal file
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: '#556cd6',
},
secondary: {
main: '#19857b',
},
error: {
main: red.A400,
},
},
});
export default theme;