プレビュー
HTML
<label>
<input type="checkbox" checked>
Favorite only
</label>
CSS
:root {
--ink: #241c16;
--paper: #fffaf1;
--accent: #d4552b;
--accent-2: #4338ca;
--on-accent: #fff;
--muted: #6a6156;
--line: #d7ccb8;
--chip: #efe6d6;
}
label {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-weight: 650;
}
input {
width: 1.1rem;
height: 1.1rem;
accent-color: var(--ink);
}