My personal website
1/**
2 * Paragraph Styles
3 *
4 * Uses the global typography system with fluid type scaling. All paragraphs use normal font weight (400) by default.
5 */
6export const paragraphStyles = {
7 base: 'font-dm-sans',
8 sizes: {
9 sm: 'paragraph-sm',
10 base: 'paragraph-base',
11 md: 'paragraph-md',
12 lg: 'paragraph-lg',
13 xl: 'paragraph-xl',
14 '2xl': 'paragraph-2xl',
15 },
16} as const;