79815176

Date: 2025-11-10 04:10:11
Score: 0.5
Natty:
Report link

For Material UI 7 you add the colors under colorSchemes in the theme https://mui.com/material-ui/customization/palette/#color-schemes

const theme = createTheme({
  colorSchemes: {
    light: {
      palette: {
        primary: {
          main: '#FF5733',
        },
      },
    },
    dark: {
      palette: {
        primary: {
          main: '#E0C2FF',
        },
      },
    },
  },
});
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: Thomas