Typography and Color
Font Stack and Scale
A short release note card gains a serif font stack, a larger base size, a stronger heading, and calmer body color.
Program
Typography starts with a font stack and a scale. The stack chooses acceptable fonts, while size and weight separate headings from body text.
font_stack_scale.html
<style>
.type-card { font-family: Georgia, "Times New Roman", serif; }
.type-card { font-size: 18px; }
.type-card h2 { font-size: 28px; font-weight: 700; }
.type-card p { color: #475569; }
</style>
<article class="type-card">
<h2>Release Notes</h2>
<p>Readable typography keeps status updates scannable.</p>
</article>
font stack
A font stack lists preferred fonts followed by fallbacks.
type scale
A type scale uses size and weight changes to show hierarchy.