# Neo-brutal yellow (B 044)

Category: Buttons  
Tags: brutalist, neo-brutalist, hard-shadow, square  
Page: https://designforai.dev/snippet/btn-044

## Prompt

A neo-brutalist button: bright yellow #fde047 fill, 3px solid black border, square corners, black 15px bold text, 12px by 24px padding, and a hard black offset shadow 5px 5px with no blur. Hover shifts the button up-left 2px and the shadow grows to 7px; active slides it 5px down-right onto the shadow so the shadow disappears. Focus outline 3px blue.

## HTML

```html
<button class="btn-044">Click me</button>
```

## CSS

```css
.btn-044 {
  font: 700 15px/1 system-ui,sans-serif;
  color: #000;
  background: #fde047;
  border: 3px solid #000;
  border-radius: 0;
  padding: 12px 24px;
  cursor: pointer;
  box-shadow: 5px 5px 0 #000;
  transition: transform .1s,box-shadow .1s
}
.btn-044:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #000
}
.btn-044:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 3px
}
.btn-044:active {
  transform: translate(5px,5px);
  box-shadow: 0 0 0 #000
}
```
