import { createMuiTheme } from '@material-ui/core/styles'; import { themeOptions } from '../index'; const theme = createMuiTheme({ ...themeOptions, palette: { ...(themeOptions && themeOptions.palette), type: 'dark', }, typography: { useNextVariants: true, }, }); export default theme;