const typography = { letterSpacings: { tighter: '-0.08px', tight: '-0.4px', normal: '0', wide: '0.4px', wider: '0.8px', widest: '1.6px', }, lineHeights: { none: 1, shorter: 1.25, short: 1.375, base: 1.5, tall: 1.625, taller: '2', '3': '12px', '4': '16px', '5': '20px', '6': '24px', '7': '28px', '8': '32px', '9': '36px', '10': '40px', }, fontWeights: { hairline: 100, thin: 200, light: 300, normal: 400, medium: 500, semibold: 600, bold: 700, extrabold: 800, black: 900, }, fonts: { heading: `Courier`, body: `Courier`, mono: `monospace`, }, fontSizes: { xs: 12, sm: 14, md: 16, lg: 18, xl: 20, '2xl': 24, '3xl': 30, '4xl': 36, '5xl': 48, '6xl': 64, }, }; export type ITypography = typeof typography; export default typography;