18 lines
460 B
TypeScript
18 lines
460 B
TypeScript
import { createTheme } from '@mui/material/styles'
|
|
|
|
export const theme = createTheme({
|
|
palette: {
|
|
mode: 'light',
|
|
primary: { main: '#3b82f6' },
|
|
background: { default: '#f5f7fa', paper: '#ffffff' },
|
|
},
|
|
components: {
|
|
MuiAppBar: { styleOverrides: { root: { backgroundColor: '#1a1f2e' } } },
|
|
MuiDrawer: {
|
|
styleOverrides: {
|
|
paper: { backgroundColor: '#1a1f2e', color: '#e2e8f0', borderRight: 'none' },
|
|
},
|
|
},
|
|
},
|
|
})
|