theme.js 223 B

12345678910
  1. import { createTheme } from '@mui/material/styles';
  2. import { colors } from '@mui/material'
  3. export const psicotheme = createTheme({
  4. palette: {
  5. primary: {
  6. main: colors.red[500],
  7. },
  8. },
  9. });