import type { TypographyStyleOptions } from '@mui/material/styles/createTypography';

export const typography: TypographyStyleOptions = {
  h1: {
    fontSize: '1.5rem',
    lineHeight: 1.2,
    fontWeight: 800,
    letterSpacing: '-.025em',
  },
  h2: {
    fontSize: '1.5rem',
    lineHeight: 1.3333333,
    fontWeight: 700,
    letterSpacing: '-.025em',
  },
  h3: {
    fontSize: '1.09375rem',
    lineHeight: 1.4,
    fontWeight: 600,
    letterSpacing: '-.025em',
  },
  h4: {
    fontSize: '1.09375rem',
    lineHeight: 1.5,
    fontWeight: 600,
  },
  h5: {
    fontSize: '0.875rem',
    lineHeight: 1.75,
    fontWeight: 400,
  },
  h6: {
    fontSize: '0.875rem',
    lineHeight: 1.75,
    fontWeight: 400,
  },
  subtitle1: {
    fontSize: '0.875rem',
    lineHeight: 1.75,
    fontWeight: 400,
  },
  subtitle2: {
    fontSize: '0.875rem',
    lineHeight: 1.75,
    fontWeight: 400,
  },
  body1: {
    fontSize: '0.875rem',
    lineHeight: 1.75,
  },
};
