
Tailwind Patterns
Drop in production-ready Tailwind utility patterns for layouts, navigation, forms, cards, and responsive landing sections.
Overview
Tailwind Patterns is an agent skill for the Build phase that provides production-ready Tailwind CSS component and layout utility patterns.
Install
npx skills add https://github.com/jezweb/claude-skills --skill tailwind-patternsWhat is this skill?
- Responsive layouts with max-w-7xl containers and sm/lg breakpoint padding
- Cards, navigation, hero, forms, buttons, and typography patterns
- Mobile-first spacing scale and flex/grid layout recipes
- Dark mode support called out in skill scope
- Auto-trigger keywords for Tailwind, shadcn/ui, and landing-page work
- Skill version 1.0.0 in package metadata
Adoption & trust: 1.1k installs on skills.sh; 841 GitHub stars; 3/3 security scanners passed (skills.sh audits).
What problem does it solve?
You know the screen you want but waste cycles guessing responsive spacing, nav structure, and card grids in utility classes.
Who is it for?
Indie builders shipping Tailwind-based SaaS, landing pages, or marketing sites who want vetted layout and component class bundles.
Skip if: Projects on CSS-in-JS only, native mobile without Tailwind, or teams needing full accessibility conformance testing from the skill alone.
When should I use this skill?
Building UI components, landing pages, forms, navigation, responsive layouts, or when user mentions Tailwind CSS, shadcn/ui, cards, navbar, or hero sections.
What do I get? / Deliverables
You get copy-ready Tailwind class compositions for layouts, forms, and marketing sections you can drop into components and refine.
- Component className patterns
- Responsive layout snippets
- Form and navigation styling blocks
Recommended Skills
Journey fit
How it compares
Utility-first UI pattern library—not an MCP design tool or a backend API integration skill.
Common Questions / FAQ
Who is tailwind-patterns for?
Solo developers and designers coding in Tailwind who want fast, consistent patterns for nav, forms, cards, and responsive sections.
When should I use tailwind-patterns?
During Build (frontend) when creating landing pages, fixing responsive layouts, styling forms, or implementing navigation and hero blocks.
Is tailwind-patterns safe to install?
It is documentation-style styling guidance without mandated shell or network access; review the Security Audits panel on this page like any community skill.
SKILL.md
READMESKILL.md - Tailwind Patterns
{ "name": "tailwind-patterns", "description": "Production-ready Tailwind CSS patterns for common website components: responsive layouts, cards, navigation, forms, buttons, and typography. Includes spacing scale, breakpoints, mobile-first patterns, and dark mode support. Use when building UI components, creating landing pages, styling forms, implementing navigation, or fixing responsive layouts. {/* content */} {/* content */} Click me {/* items */} {/* content */} <div className=max-w-7xl mx-auto px-4 sm:px-6 lg:px-8> {/* content */} </div> ", "version": "1.0.0", "author": { "name": "Jeremy Dawes", "email": "jeremy@jezweb.net" }, "license": "MIT", "repository": "https://github.com/jezweb/claude-skills", "keywords": [] } # Tailwind Patterns Skill Production-ready Tailwind CSS component patterns for building modern websites and applications. ## Auto-Trigger Keywords This skill should be suggested when the user mentions: **Technology Names:** - Tailwind CSS, Tailwind, TailwindCSS - CSS utility classes, utility-first CSS - shadcn/ui components **Component Types:** - cards, card layouts, card grid - navigation, navbar, header, footer, menu - forms, input fields, form validation - buttons, button variants, button styles - grids, responsive grid, layout grid - hero section, landing page - typography, text styles, headings **Layout Terms:** - responsive design, mobile-first - container, section padding - flexbox, grid layout - spacing scale, padding, margin, gap - breakpoints, media queries **Styling Concepts:** - dark mode, theme switching, color tokens - semantic colors, design tokens - hover effects, transitions, animations - focus states, interactive elements **Common Issues:** - responsive layout not working - spacing inconsistent - colors not dark mode compatible - button styles not matching - form inputs not styled - mobile navigation broken - grid not responsive ## What This Skill Covers 1. **Layout Patterns** - Containers, sections, responsive grids, flexbox 2. **Card Components** - Basic cards, feature cards, pricing cards, hover states 3. **Navigation** - Headers, mobile menus, footers, breadcrumbs 4. **Form Elements** - Inputs, selects, checkboxes, validation states 5. **Buttons** - All variants (primary, secondary, outline, ghost, destructive) 6. **Typography** - Responsive headings, body text, lists, badges 7. **Dark Mode** - Semantic color tokens, theme switching patterns ## Quick Example ```tsx // Responsive feature grid with cards <section className="py-16 sm:py-24"> <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> <h2 className="text-3xl font-bold text-center mb-12">Features</h2> <div className="grid grid-cols-1 md:grid-cols-3 gap-6"> {features.map(feature => ( <div key={feature.id} className="bg-card rounded-lg border p-6 hover:shadow-lg transition-shadow"> <h3 className="text-xl font-semibold mb-2">{feature.title}</h3> <p className="text-muted-foreground">{feature.description}</p> </div> ))} </div> </div> </section> ``` ## Related Skills - **tailwind-v4-shadcn** - Tailwind v4 setup with shadcn/ui - **react-hook-form-zod** - Form handling with validation - **nextjs** - Next.js framework integration - **cloudflare-worker-base** - Deploying Tailwind-based apps ## When to Use This Skill Use this skill when: - Starting a new UI component - Building landing pages or marketing sites - Creating forms or navigation - Implementing responsive layouts - Fixing dark mode compatibility - Standardizing spacing and typography - Converting designs to code ## Key Benefits - Copy-paste ready components - Mobile-first responsive patterns - Dark mode compatible by default - Consistent spacing and typography - Production-tested in 10+ projects - Semantic color tokens throughout --- name: tailwind-patterns description: | Production-ready Tailwind CSS patterns for common website components: responsive layouts, cards, nav