# Brutalist Mono (B 046)

Kategorie: Buttons  
Tags: brutalist, monospace, square, inverted-hover  
Seite: https://designforai.dev/de/snippet/btn-046

## Prompt

Ein karger brutalistischer Monospace-Button: weiße Füllung, 2px schwarzer Rahmen, eckige Ecken, schwarzer 14px bold Monospace-Text "[ SUBMIT ]", 12px mal 20px Padding, kein Schatten, keine Transitions. Hover invertiert sofort auf Schwarz mit weißem Text; active #333. Fokus-Outline 2px gestrichelt Schwarz.

## HTML

```html
<button class="btn-046">[ SUBMIT ]</button>
```

## CSS

```css
.btn-046 {
  font: 700 14px/1 ui-monospace,Menlo,monospace;
  color: #000;
  background: #fff;
  border: 2px solid #000;
  border-radius: 0;
  padding: 12px 20px;
  cursor: pointer;
  transition: none
}
.btn-046:hover {
  background: #000;
  color: #fff
}
.btn-046:focus-visible {
  outline: 2px dashed #000;
  outline-offset: 3px
}
.btn-046:active {
  background: #333;
  color: #fff
}
```
