Neu Press
A soft pressable button
Preview
HTML
<button type="button">Press</button>
CSS
:root {
--ink: #241c16;
--paper: #fffaf1;
--accent: #d4552b;
--accent-2: #4338ca;
--on-accent: #fff;
--muted: #6a6156;
--line: #d7ccb8;
--chip: #efe6d6;
}
button {
padding: 0.9rem 1.4rem;
border: 0;
border-radius: 1rem;
background: var(--chip);
box-shadow: 8px 8px 16px var(--muted), -8px -8px 16px var(--paper);
color: var(--muted);
font: inherit;
font-weight: 700;
}
button:hover {
box-shadow: inset 6px 6px 12px var(--muted), inset -6px -6px 12px var(--paper);
}