I have material-ui@next installed and I want to customize the background color of the theme.
I tried this:
const theme = createMuiTheme({
palette: createPalette({
type: 'light',
primary: purple,
background: {
default: '#303030',
},
}),
});
And this.
<MuiThemeProvider theme={theme}>
But the background color is still white when it should change to red.