Color Presets
How to change available color presets
..
├── default.js
├── theme1.js
├── ..
├── ..
├── ..
├── theme8.jsconst config = {
...
presetColor: 'default', // default, theme1, theme2 to theme8 available
...
...
...
}import { PaletteMode } from '@material-ui/core';
const config: {
...
theme: PaletteMode;
...
} = {
...
presetColor: 'default', // default, theme1, theme2, theme3 upto theme8
...
};
export default config;Last updated