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

13 lines
217 B
TypeScript
Raw Normal View History

2024-06-21 20:06:07 +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
},
palette: { background: { default: '#ebf5ff' } }
})
2024-06-19 21:18:35 +01:00
2024-06-21 20:06:07 +01:00
export default theme