# Midnight secondary (B 097)

Category: Buttons  
Tags: dark-mode, outline, subtle, rounded  
Page: https://designforai.dev/snippet/btn-097

## 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.

## HTML

```html
<div style="background:#09090b;padding:28px"><button class="btn-097">View logs</button></div>
```

## CSS

```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
}
```
