Midnight secondary
Midnight secondary: a CSS button. Copy the rules, or the prompt that rebuilds it.
CSS
.btn-097 {
font: 500 14px/1 system-ui,sans-serif;
color: #d4d4d8;
background: #18181b;
border: 1px solid #27272a;
border-radius: 8px;
padding: 11px 20px;
cursor: pointer;
transition: background .15s,border-color .15s,color .15s
}
.btn-097:hover {
background: #27272a;
border-color: #3f3f46;
color: #fafafa
}
.btn-097:focus-visible {
outline: 2px solid #a1a1aa;
outline-offset: 2px
}
.btn-097:active {
background: #3f3f46
}
HTML
<div style="background:#09090b;padding:28px"><button class="btn-097">View logs</button></div>Prompt
A dark-mode secondary button on #09090b: #18181b fill, 1px #27272a border, light grey text #d4d4d8 at 14px medium, 8px radius, 11px by 20px padding. Hover #27272a fill with #3f3f46 border and #fafafa text; active #3f3f46. Focus outline 2px #a1a1aa.