# Brutalist Tag (B 050)

Kategorie: Buttons  
Tags: brutalist, small, tag, rotate  
Seite: https://designforai.dev/de/snippet/btn-050

## Prompt

Ein kleiner brutalistischer Tag-Button: schwarze Füllung, 2px schwarzer Rahmen, eckige Ecken, weißer 12px Text in Black-Weight "NEW" mit 0.1em Spacing, 8px mal 12px Padding, um -2deg gekippt, harter roter #ef4444 Schatten 3px 3px. Hover richtet ihn auf 0deg gerade; active rutscht zusätzlich auf den Schatten. Fokus-Outline 2px Rot.

## HTML

```html
<button class="btn-050">NEW</button>
```

## CSS

```css
.btn-050 {
  font: 900 12px/1 system-ui,sans-serif;
  letter-spacing: .1em;
  color: #fff;
  background: #000;
  border: 2px solid #000;
  border-radius: 0;
  padding: 8px 12px;
  cursor: pointer;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 #ef4444;
  transition: transform .1s
}
.btn-050:hover {
  transform: rotate(0deg)
}
.btn-050:focus-visible {
  outline: 2px solid #ef4444;
  outline-offset: 3px
}
.btn-050:active {
  transform: rotate(0deg) translate(3px,3px);
  box-shadow: 0 0 0 #ef4444
}
```
