What problem does it solve? Frontend developers migrating to or building with Tailwind CSS v4 need guidance on its CSS-first architecture, since v4 replaces the JavaScript config file with the @theme directive and introduces native container queries, OKLCH colors, and the Oxide engine. ## Core Features & Use Cases - CSS-First Configuration: Define design tokens with the @theme directive using semantic naming for colors, spacing, and typography instead of tailwind.config.js. - Modern Responsive Patterns: Apply container queries (@container, @sm:, @md:) for component-level responsiveness alongside mobile-first viewport breakpoints. - Layout & Design Systems: Implement Flexbox and Grid patterns including Bento layouts, dark mode strategies, OKLCH color tokens, and component extraction rules. - Use Case: When building a reusable card component that must adapt to its parent width rather than the viewport, use this Skill to apply named container queries and semantic design tokens correctly. ## Quick Start Use the tailwind-patterns skill to refactor this component to Tailwind v4 with CSS-first theme tokens and container queries.