feat: Initial typography / prose styles

This commit is contained in:
2026-01-13 22:17:15 -05:00
parent 12048ffdd3
commit 764bc6aeea
5 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
/* Heading styles */
@utility heading-base { @apply font-bold tracking-tight };
@utility heading-1 { @apply heading-base text-4xl; }
@utility heading-2 { @apply heading-base text-3xl; }
@utility heading-3 { @apply heading-base text-2xl; }
@utility heading-4 { @apply heading-base text-xl; }
/* Paragraph styles */
@utility paragraph-base { @apply font-sans; }
@utility paragraph-sm { @apply paragraph-base text-sm; }
@utility paragraph-md { @apply paragraph-base text-base; }
@utility paragraph-lg { @apply paragraph-base text-lg; }
@utility paragraph-xl { @apply paragraph-base text-2xl; }