# Ghost texto gradiente (B 027)

Categoria: Botões  
Tags: gradient, ghost, text-gradient, background-clip  
Página: https://designforai.dev/pt/snippet/btn-027

## Prompt

Um botão ghost sem borda cujo próprio texto é um gradiente (90deg, fúcsia #d946ef para laranja #f97316) via background-clip text, 15px bold, padding de 12px por 20px, fundo transparente, raio de 8px. No hover o gradiente clareia 15%, no active escurece para 90%. Outline de foco de 2px fúcsia.

## HTML

```html
<button class="btn-027">Pro features</button>
```

## CSS

```css
.btn-027 {
  font: 700 15px/1 system-ui,sans-serif;
  background: linear-gradient(90deg,#d946ef,#f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border: 0;
  border-radius: 8px;
  padding: 12px 20px;
  cursor: pointer;
  transition: filter .15s,background-color .15s
}
.btn-027:hover {
  filter: brightness(1.15)
}
.btn-027:focus-visible {
  outline: 2px solid #d946ef;
  outline-offset: 2px
}
.btn-027:active {
  filter: brightness(.9)
}
```
