What problem does it solve? Styling responsive layouts, components, and dark mode variants with Tailwind CSS requires knowing the correct utility classes, v3-specific syntax, and project conventions. This Skill guides the AI to write correct Tailwind v3 classes in Blade, JSX, or Vue templates while avoiding common mistakes like margin-based spacing or missing dark mode variants. ## Core Features & Use Cases - Layout Construction: Build responsive flexbox and grid layouts such as multi-column card grids, dashboards with sidebars, and fixed topbars using gap utilities and breakpoint prefixes. - Component Styling: Style cards, tables, navbars, forms, badges, and pricing sections following existing project conventions. - Dark Mode Support: Add dark: variants consistently so new pages match the project's existing color scheme behavior. - Use Case: You are building a Laravel Blade dashboard page and need a responsive three-column card grid with dark mode support. The Skill produces correct Tailwind v3 markup with grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 and matching dark: variants. ## Quick Start Ask the AI to style a responsive card grid with dark mode support using Tailwind CSS in your Blade template.