Files
omni-tools/src/config/muiConfig.ts
Ibrahima G. Coulibaly 94aa86e4db fix: text split try catch
2024-06-21 22:35:56 +01:00

14 lines
252 B
TypeScript

import { createTheme } from '@mui/material';
const theme = createTheme({
typography: {
button: {
textTransform: 'none'
}
},
palette: { background: { default: '#ebf5ff' } },
zIndex: { snackbar: 100000 }
});
export default theme;