WIP: React
This commit is contained in:
parent
ce9e9f3e0d
commit
4c4e689af4
20 changed files with 31671 additions and 0 deletions
19
web/src/theme.js
Normal file
19
web/src/theme.js
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue