mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-06 17:04:56 +05:30
12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
import { createTheme } from '@mui/material'
|
|
|
|
const theme = createTheme({
|
|
typography: {
|
|
button: {
|
|
textTransform: 'none'
|
|
}
|
|
},
|
|
palette: { background: { default: '#ebf5ff' } }
|
|
})
|
|
|
|
export default theme
|