import { createTheme } from '@mui/material/styles'; const theme = createTheme({ palette: { primary: { main: '{{primary}}' }, secondary: { main: '{{secondary}}' }, error: { main: '{{error}}' }, warning: { main: '{{warning}}' }, info: { main: '{{info}}' }, success: { main: '{{success}}' }, background: { default: '{{background}}' }, text: { primary: '{{textPrimary}}', secondary: '{{textSecondary}}', }, }, typography: { fontFamily: '{{font}}', }, }); export default theme;