File size: 337 Bytes
0110dee | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | /* Typography System */
body {
font-family: var(--font-ui);
font-size: var(--font-14);
line-height: 1.5;
color: var(--text-primary);
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-display);
font-weight: 600;
line-height: 1.2;
}
code, pre {
font-family: var(--font-code);
}
/* Made with Bob */
|