Files
web-check-2/src/styles/typography.ts
2022-07-08 21:47:01 +01:00

23 lines
460 B
TypeScript

export const TextSizes = {
xSmall: '0.75rem',
small: '1rem',
medium: '1.5rem',
large: '2rem',
xLarge: '3rem',
};
export const TextReset = `
font-size: ${TextSizes.small};
font-family: PTMono, Helvetica, Arial, sans-serif;
font-weight: 400;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: 0.38px;
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
`;