# Toggle-Pille (pressed) (B 087)

Kategorie: Buttons  
Tags: toggle, pressed, aria-pressed, pill  
Seite: https://designforai.dev/de/snippet/btn-087

## Prompt

Pillen-Toggle-Buttons über aria-pressed: standardmäßig weiß mit 1px Rahmen #d1d5db und grauem Text #374151 in 13px semibold, 9px mal 16px Padding; bei aria-pressed true invertiert die Pille auf #111827 mit weißem Text. Hover #f3f4f6 (oder #1f2937 wenn gedrückt); active skaliert auf 96%. Fokus-Outline 2px Dunkel.

## HTML

```html
<button class="btn-087" aria-pressed="true">Bold</button> <button class="btn-087" aria-pressed="false">Italic</button>
```

## CSS

```css
.btn-087 {
  font: 600 13px/1 system-ui,sans-serif;
  color: #374151;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  transition: background .15s,color .15s,border-color .15s
}
.btn-087:hover {
  background: #f3f4f6
}
.btn-087[aria-pressed="true"] {
  background: #111827;
  color: #fff;
  border-color: #111827
}
.btn-087[aria-pressed="true"]:hover {
  background: #1f2937
}
.btn-087:focus-visible {
  outline: 2px solid #111827;
  outline-offset: 2px
}
.btn-087:active {
  transform: scale(.96)
}
```
