Restructure
This commit is contained in:
parent
8c0f3b2304
commit
c6c3caec39
7 changed files with 6 additions and 13 deletions
19
web/src/components/theme.js
Normal file
19
web/src/components/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: '#338574',
|
||||
},
|
||||
secondary: {
|
||||
main: '#6cead0',
|
||||
},
|
||||
error: {
|
||||
main: red.A400,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
export default theme;
|
Loading…
Add table
Add a link
Reference in a new issue