# Slate square (B 005)

Category: Buttons  
Tags: solid, flat, square-corners, monochrome  
Page: https://designforai.dev/snippet/btn-005

## Prompt

A square-cornered grey button, background #e2e8f0 with near-black text #0f172a, 14px medium weight, 12px by 20px padding, zero radius, no border, no shadow. Hover #cbd5e1, active #94a3b8. Focus outline 2px #0f172a.

## HTML

```html
<button class="btn-005">Export</button>
```

## CSS

```css
.btn-005 {
  font: 500 14px/1 system-ui,sans-serif;
  color: #0f172a;
  background: #e2e8f0;
  border: 0;
  border-radius: 0;
  padding: 12px 20px;
  cursor: pointer;
  transition: background .12s
}
.btn-005:hover {
  background: #cbd5e1
}
.btn-005:focus-visible {
  outline: 2px solid #0f172a;
  outline-offset: 2px
}
.btn-005:active {
  background: #94a3b8
}
```
