admin_dashboard_react/src/theme.js
SnippetsX c711fb949f Added some widgets
Removed menu button
added terminal functional button
Added Dashboard button on User button
Added warning theming color
2024-11-04 00:59:56 +03:00

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;