1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import { createMuiTheme } from '@material-ui/core/styles'; import orange from '@material-ui/core/colors/orange'; const theme = createMuiTheme({ palette: { primary: { light: orange[300], main: orange[500], dark: orange[700], contrastText: "#fff" } }, typography: { useNextVariants: true, } }); export default theme;