mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
14 lines
252 B
TypeScript
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;
|