Removed menu button added terminal functional button Added Dashboard button on User button Added warning theming color
19 lines
293 B
JavaScript
19 lines
293 B
JavaScript
import { createTheme } from '@mui/material/styles';
|
|
|
|
const theme = createTheme({
|
|
palette: {
|
|
primary: {
|
|
main: '#00523f',
|
|
},
|
|
secondary: {
|
|
main: '#003327'
|
|
},
|
|
warning: {
|
|
main: '#520013'
|
|
}
|
|
},
|
|
|
|
});
|
|
|
|
|
|
export default theme; |