プレビュー
HTML
<button type="button">Save design</button>
CSS
:root {
--ink: #241c16;
--paper: #fffaf1;
--accent: #d4552b;
--accent-2: #4338ca;
--on-accent: #fff;
--muted: #6a6156;
--line: #d7ccb8;
--chip: #efe6d6;
}
button {
padding: 0.85rem 1.35rem;
border: 1px solid currentColor;
border-radius: 999px;
background: transparent;
color: var(--ink);
font: inherit;
font-weight: 650;
letter-spacing: 0.02em;
}
button:hover {
background: var(--ink);
color: var(--on-accent);
}