プレビュー
HTML
<article>
<h1>Stack</h1>
<p>One value for every gap.</p>
<p>No special-case margins.</p>
</article>
CSS
:root {
--ink: #241c16;
--paper: #fffaf1;
--accent: #d4552b;
--accent-2: #4338ca;
--on-accent: #fff;
--muted: #6a6156;
--line: #d7ccb8;
--chip: #efe6d6;
}
article {
display: flex;
flex-direction: column;
gap: 1rem;
max-width: 24rem;
}
h1,
p {
margin: 0;
}