typography.ts 757 B

12345678910111213141516171819202122232425262728293031323334353637
  1. import { TypographyOptions } from "@mui/material/styles/createTypography";
  2. export const typography: TypographyOptions = {
  3. h1: {
  4. fontSize: "48px",
  5. lineHeight: "58px",
  6. },
  7. h2: {
  8. fontSize: "32px",
  9. lineHeight: "39px",
  10. },
  11. h3: {
  12. fontSize: "24px",
  13. lineHeight: "29px",
  14. },
  15. large: {
  16. fontSize: "18px",
  17. lineHeight: "22px",
  18. },
  19. body: {
  20. fontSize: "16px",
  21. lineHeight: "20px",
  22. },
  23. small: {
  24. fontSize: "14px",
  25. lineHeight: "17px",
  26. },
  27. mini: {
  28. fontSize: "12px",
  29. lineHeight: "15px",
  30. },
  31. tiny: {
  32. fontSize: "10px",
  33. lineHeight: "12px",
  34. },
  35. fontFamily: ["Inter", "sans-serif"].join(","),
  36. };