# Sonnenblume fett (B 006)

Kategorie: Buttons  
Tags: solid, flat, rounded, warm, dark-text  
Seite: https://designforai.dev/de/snippet/btn-006

## Prompt

Ein leuchtend gelber Button #facc15 mit fast schwarzem Text #1c1917, 16px bold, 10px Radius, 14px mal 28px Padding. Beim Hover dunkelt er auf #eab308 ab und hebt sich 1px; active fällt zurück und nutzt #ca8a04. Fokusring 3px fast schwarz.

## HTML

```html
<button class="btn-006">Buy now</button>
```

## CSS

```css
.btn-006 {
  font: 700 16px/1 system-ui,sans-serif;
  color: #1c1917;
  background: #facc15;
  border: 0;
  border-radius: 10px;
  padding: 14px 28px;
  cursor: pointer;
  transition: background .15s,transform .15s
}
.btn-006:hover {
  background: #eab308;
  transform: translateY(-1px)
}
.btn-006:focus-visible {
  outline: 3px solid #1c1917;
  outline-offset: 2px
}
.btn-006:active {
  background: #ca8a04;
  transform: none
}
```
