What problem does it solve? Applying consistent, modern styling with Tailwind CSS v4 requires knowing its new CSS-first configuration, updated import syntax, and which v3 utilities were removed. This Skill guides correct usage of Tailwind v4 so components are styled without deprecated patterns or configuration mistakes. ## Core Features & Use Cases - Tailwind v4 Migration Guidance: Replaces deprecated utilities (bg-opacity-, flex-shrink-, etc.) with their v4 equivalents and uses @import "tailwindcss" instead of @tailwind directives. - CSS-First Configuration: Defines design tokens via the @theme directive in CSS instead of a tailwind.config.js file. - Layout & Dark Mode Patterns: Provides flexbox, grid, gap-based spacing, and dark: variant patterns for responsive, theme-aware components. - Use Case: When restyling a hero section or building a responsive card grid, the Skill ensures correct v4 syntax, consistent spacing with gap utilities, and dark mode support matching the project's conventions. ## Quick Start Style this component with Tailwind CSS v4, using a responsive grid layout, gap spacing, and dark mode variants.