You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

muiTheme.js 717B

123456789101112131415161718192021222324252627282930313233343536
  1. import { createTheme } from '@mui/material/styles';
  2. const theme = createTheme({
  3. typography: {
  4. h1: {
  5. fontFamily: ['Roboto', 'sans-serif'].join(','),
  6. textTransform: '',
  7. fontSize: '82px',
  8. },
  9. h3: {
  10. fontFamily: ['Indie Flower', 'cursive'].join(','),
  11. },
  12. h2: {
  13. fontFamily: ['Indie Flower', 'cursive'].join(','),
  14. },
  15. h4: {
  16. fontFamily: ['Roboto', 'sans-serif'].join(','),
  17. fontSize: '42px',
  18. },
  19. },
  20. body1: {
  21. fontFamily: ['Roboto', 'sans-serif'].join(','),
  22. },
  23. palette: {
  24. primary: {
  25. main: '#664c47',
  26. light: '#8f7772',
  27. },
  28. secondary: {
  29. dark: '#1f1c1a',
  30. main: '#c6453e',
  31. },
  32. },
  33. });
  34. export default theme;