# Terminal prompt (B 093)

Category: Buttons  
Tags: retro, terminal, monospace, blink  
Page: https://designforai.dev/snippet/btn-093

## Prompt

A terminal-style button: near-black #0a0f0a fill, 1px dark green #14532d border, 4px radius, green #22c55e 14px monospace text prefixed with a lighter "$ " and followed by a blinking 8px by 14px block cursor (1s step blink). Hover adds a green glow 0 0 12px at 35%; active fills #14532d with white text. Focus outline 2px green.

## HTML

```html
<button class="btn-093">run_build</button>
```

## CSS

```css
.btn-093 {
  font: 500 14px/1 ui-monospace,Menlo,monospace;
  color: #22c55e;
  background: #0a0f0a;
  border: 1px solid #14532d;
  border-radius: 4px;
  padding: 11px 16px 11px 12px;
  cursor: pointer;
  transition: background .1s,box-shadow .1s
}
.btn-093::before {
  content: "$ ";
  color: #86efac
}
.btn-093::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  margin-left: 6px;
  vertical-align: -2px;
  background: #22c55e;
  animation: btn-093-c 1s steps(1) infinite
}
@keyframes btn-093-c {
  50% {
    opacity: 0
  }
}
.btn-093:hover {
  background: #0f1a0f;
  box-shadow: 0 0 12px rgba(34,197,94,.35)
}
.btn-093:focus-visible {
  outline: 2px solid #22c55e;
  outline-offset: 2px
}
.btn-093:active {
  background: #14532d;
  color: #fff
}
@media (prefers-reduced-motion: reduce) {
  .btn-093, .btn-093 * { animation: none; transition: none; }
}
```
