ui-styling

Installation
SKILL.md

UI Styling

Build consistent, accessible UIs with shadcn/ui and Tailwind CSS.

Core Principle: Component-First

Never use shadcn primitives directly in pages/features. Always wrap in custom components.

// WRONG: Using primitives directly throughout the app
import { Button } from "@/components/ui/button"
<Button variant="default" size="sm" className="bg-brand-500">Save</Button>
Installs
1
First Seen
Jun 26, 2026
ui-styling — kettleofketchup/dotfiles