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.ts 624B

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