# Rosé Outline-Pille (B 015)

Kategorie: Buttons  
Tags: outline, pill, thin-border, tinted-hover  
Seite: https://designforai.dev/de/snippet/btn-015

## Prompt

Ein pillenförmiger Outline-Button mit 1.5px Rosé-Rahmen #be123c und Rosé-Text, 13px semibold, 9px mal 18px Padding, voll abgerundet. Hover tönt den Hintergrund #fff1f2; active füllt komplett Rosé mit weißem Text. Fokusring 2px Rosé.

## HTML

```html
<button class="btn-015">Follow</button>
```

## CSS

```css
.btn-015 {
  font: 600 13px/1 system-ui,sans-serif;
  color: #be123c;
  background: transparent;
  border: 1.5px solid #be123c;
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background .15s,color .15s
}
.btn-015:hover {
  background: #fff1f2
}
.btn-015:focus-visible {
  outline: 2px solid #be123c;
  outline-offset: 2px
}
.btn-015:active {
  background: #be123c;
  color: #fff
}
```
