# Schrumpf-Pille (B 021)

Kategorie: Buttons  
Tags: pill, solid, scale, press  
Seite: https://designforai.dev/de/snippet/btn-021

## Prompt

Ein grüner Pillen-Button #16a34a, weißer Text 14px semibold, 12px mal 26px Padding, voll abgerundet. Hover #15803d; beim Drücken skaliert er in 100ms auf 94% und dunkelt auf #166534. Fokus-Outline 2px Grün mit 3px Offset.

## HTML

```html
<button class="btn-021">Send</button>
```

## CSS

```css
.btn-021 {
  font: 600 14px/1 system-ui,sans-serif;
  color: #fff;
  background: #16a34a;
  border: 0;
  border-radius: 999px;
  padding: 12px 26px;
  cursor: pointer;
  transition: transform .1s,background .15s
}
.btn-021:hover {
  background: #15803d
}
.btn-021:focus-visible {
  outline: 2px solid #16a34a;
  outline-offset: 3px
}
.btn-021:active {
  transform: scale(.94);
  background: #166534
}
```
