# Texto ghost (B 011)

Categoria: Botões  
Tags: ghost, borderless, text-button, minimal  
Página: https://designforai.dev/pt/snippet/btn-011

## Prompt

Um botão ghost sem borda: fundo transparente, texto cinza #4b5563 em 14px medium, raio de 6px, padding de 10px por 14px. No hover aparece um fundo #f3f4f6 e o texto escurece para #111827. Active #e5e7eb. Outline de foco de 2px #6b7280.

## HTML

```html
<button class="btn-011">Cancel</button>
```

## CSS

```css
.btn-011 {
  font: 500 14px/1 system-ui,sans-serif;
  color: #4b5563;
  background: transparent;
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background .12s,color .12s
}
.btn-011:hover {
  background: #f3f4f6;
  color: #111827
}
.btn-011:focus-visible {
  outline: 2px solid #6b7280;
  outline-offset: 1px
}
.btn-011:active {
  background: #e5e7eb
}
```
