Color Presets
How to change available color presets
..
βββ _theme1.module.scss
βββ _theme2.module.scss
βββ ..
βββ ..
βββ ..
βββ _theme6.module.scssconst config = {
...
presetColor: 'default', // default, theme1, theme2 to theme6 available
...
...
...
}import { PaletteMode } from '@material-ui/core';
const config: {
...
theme: PaletteMode;
...
} = {
...
presetColor: 'default', // default, theme1, theme2, theme3 upto theme6
...
};
export default config;For Remix
Last updated