next.js/turbopack/benchmark-apps/mui/theme.tsx
theme.tsx21 lines353 B
import { createTheme } from '@mui/material/styles'
import { red } from '@mui/material/colors'

// A custom theme for this app
const theme = createTheme({
  cssVariables: true,
  palette: {
    primary: {
      main: '#556cd6',
    },
    secondary: {
      main: '#19857b',
    },
    error: {
      main: red.A400,
    },
  },
})

export default theme
Quest for Codev2.0.0
/
SIGN IN