Midnight Primary
Midnight Primary: CSS-Button. Kopiere die Regeln oder den Prompt, der das Ergebnis nachbaut.
CSS
.btn-096 {
font: 600 14px/1 system-ui,sans-serif;
color: #09090b;
background: #fafafa;
border: 0;
border-radius: 8px;
padding: 12px 24px;
cursor: pointer;
box-shadow: 0 0 0 1px rgba(255,255,255,.1),0 4px 16px rgba(255,255,255,.08);
transition: background .15s,box-shadow .15s
}
.btn-096:hover {
background: #fff;
box-shadow: 0 0 0 1px rgba(255,255,255,.2),0 6px 24px rgba(255,255,255,.14)
}
.btn-096:focus-visible {
outline: 2px solid #fafafa;
outline-offset: 3px
}
.btn-096:active {
background: #e4e4e7;
box-shadow: 0 0 0 1px rgba(255,255,255,.1)
}
HTML
<div style="background:#09090b;padding:28px"><button class="btn-096">Deploy</button></div>Prompt
Ein Dark-Mode Primär-Button auf #09090b: cremeweiße #fafafa Füllung mit fast schwarzem Text in 14px semibold, 8px Radius, 12px mal 24px Padding, ein 1px Ring in 10% Weiß und ein zartes weißes Leuchten 0 4px 16px. Hover hellt auf Reinweiß mit stärkerem Leuchten; active #e4e4e7. Fokus-Outline 2px Cremeweiß.