Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

brutalist-ui

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

brutalist-ui

A Neo-Brutalism styled React UI component library

latest
Source
npmnpm
Version
0.1.9
Version published
Maintainers
1
Created
Source

Brutalist UI

Neo-brutalism React component library with CLI support. Copy components into your codebase for full customization control.

npm version npm downloads License: MIT TypeScript

Features

  • CLI Tool: Copy components into your codebase with npx brutx@latest
  • Full Control: Own and customize every component
  • Brutalist wrappers: bold borders, offset shadows, vibrant colors
  • Tailwind-ready tokens: background/foreground/primary/secondary/destructive, ring, input, card, etc. Dark mode via .dark
  • Radix-based primitives, CVA variants, and tailwind-merge cn

Installation

Use the CLI to add components to your project:

# Initialize your project
npx brutx@latest init

# Add components
npx brutx@latest add button card badge

# Or add all components
npx brutx@latest add --all

Usage

After adding components, import them from your project:

import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/card';

export function Example() {
    return (
        <Card>
            <CardHeader>
                <CardTitle>Welcome to Brutalist UI</CardTitle>
            </CardHeader>
            <CardContent className="space-y-3">
                <Input placeholder="Email" />
                <Button variant="primary">Get Started</Button>
                <Button variant="outline" size="sm">
                    Learn More
                </Button>
            </CardContent>
        </Card>
    );
}

CLI Commands

CommandDescription
npx brutx@latest initInitialize project with components.json
npx brutx@latest add <component>Add specific component(s)
npx brutx@latest add --allAdd all components

Notes

  • Dark mode: add/remove .dark on html or body to switch themes.
  • Components are copied to your project, giving you full ownership and customization control.
  • Tokens can be overridden by setting CSS variables (--background, --primary, etc.).

Keywords

react

FAQs

Package last updated on 04 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts