Components
Loading preview...
A NeoBrutalism style button with thick borders, high-contrast colors, and a sharp offset shadow that snaps away on press. Fully theme-aware with overridable color, border, shadow, and radius props.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/brutal-button"use client";
import { BrutalButton } from "@/components/ui/brutal-button";
export default function CustomColor() {
return (
<div className="flex min-h-screen w-full items-center justify-center bg-background p-12">
<BrutalButton color="#a3e635" textColor="#000000" radius={12}>
Brutal Doom
</BrutalButton>
</div>
);
}