What problem does it solve? Styling web interfaces with Tailwind CSS requires knowing the correct utility classes, spacing conventions, dark mode variants, and responsive breakpoints. This Skill guides the AI to write clean, convention-compliant Tailwind markup and avoid common mistakes like redundant classes or missing dark mode support. ## Core Features & Use Cases - Utility Class Authoring: Write and fix Tailwind CSS v3 classes in Blade, JSX, or Vue templates following project conventions. - Layout Patterns: Build responsive flexbox and grid layouts, including multi-column card grids, dashboards with sidebars, and mobile-toggle navs. - Dark Mode & Spacing: Apply dark: variants consistently and use gap utilities instead of margins for sibling spacing. - Use Case: You need a responsive pricing section with three cards that collapses to one column on mobile and supports dark mode. The Skill generates the correct grid grid-cols-1 md:grid-cols-3 gap-6 structure with proper dark mode classes. ## Quick Start Ask the AI to build a responsive three-column card grid with dark mode support using Tailwind CSS in your Blade template.