Files
omni-tools/src/config/muiConfig.ts

14 lines
252 B
TypeScript
Raw Normal View History

2024-06-21 22:35:56 +01:00
import { createTheme } from '@mui/material';
2024-06-19 21:18:35 +01:00
const theme = createTheme({
typography: {
button: {
textTransform: 'none'
}
2024-06-21 20:06:07 +01:00
},
2024-06-21 22:35:56 +01:00
palette: { background: { default: '#ebf5ff' } },
zIndex: { snackbar: 100000 }
});
2024-06-19 21:18:35 +01:00
2024-06-21 22:35:56 +01:00
export default theme;