2024-06-20 15:43:14 +02:00
|
|
|
import { createTheme } from '@mui/material/styles';
|
|
|
|
|
|
|
|
export const customTheme = createTheme({
|
|
|
|
palette: {
|
|
|
|
primary: {
|
|
|
|
light: '#a700c3',
|
|
|
|
main: '#a400c0',
|
|
|
|
dark: '#a400c0',
|
|
|
|
contrastText: '#fff',
|
|
|
|
},
|
|
|
|
secondary: {
|
|
|
|
light: '#ff7961',
|
|
|
|
main: '#f44336',
|
|
|
|
dark: '#ba000d',
|
|
|
|
contrastText: '#000',
|
|
|
|
},
|
|
|
|
},
|
2024-06-20 20:11:00 +02:00
|
|
|
typography: {
|
|
|
|
fontFamily: [
|
|
|
|
'-apple-system',
|
|
|
|
'BlinkMacSystemFont',
|
|
|
|
'"Segoe UI"',
|
|
|
|
'"Helvetica Neue"',
|
|
|
|
'Arial',
|
|
|
|
'sans-serif',
|
|
|
|
'"Apple Color Emoji"',
|
|
|
|
'"Segoe UI Emoji"',
|
|
|
|
'"Segoe UI Symbol"',
|
|
|
|
].join(','),
|
|
|
|
},
|
2024-06-20 15:43:14 +02:00
|
|
|
});
|