next.js/test/e2e/new-link-behavior/material-ui/src/theme.js
theme.js20 lines328 B
import { createTheme } from '@mui/material/styles'
import { red } from '@mui/material/colors'

// Create a theme instance.
const theme = createTheme({
  palette: {
    primary: {
      main: '#556cd6',
    },
    secondary: {
      main: '#19857b',
    },
    error: {
      main: red.A400,
    },
  },
})

export default theme
Quest for Codev2.0.0
/
SIGN IN