Spaces:
Runtime error
Runtime error
| import { createTheme } from '@mui/material/styles'; | |
| const theme = createTheme({ | |
| palette: { | |
| mode: 'dark', | |
| primary: { | |
| main: '#7C4DFF', | |
| }, | |
| background: { | |
| default: '#121212', | |
| paper: '#1E1E1E', | |
| }, | |
| success: { | |
| main: '#4CAF50', | |
| }, | |
| error: { | |
| main: '#F44336', | |
| }, | |
| }, | |
| typography: { | |
| fontFamily: '"Inter", "Roboto", "Helvetica", "Arial", sans-serif', | |
| h3: { | |
| fontWeight: 700, | |
| }, | |
| h5: { | |
| fontWeight: 600, | |
| }, | |
| }, | |
| shape: { | |
| borderRadius: 12, | |
| }, | |
| components: { | |
| MuiButton: { | |
| styleOverrides: { | |
| root: { | |
| textTransform: 'none', | |
| fontWeight: 600, | |
| borderRadius: 12, | |
| padding: '12px 32px', | |
| fontSize: '1rem', | |
| }, | |
| }, | |
| }, | |
| MuiCard: { | |
| styleOverrides: { | |
| root: { | |
| borderRadius: 16, | |
| backgroundImage: 'none', | |
| }, | |
| }, | |
| }, | |
| }, | |
| }); | |
| export default theme; | |