modern-tailwind

Build clean, scalable UIs with Tailwind CSS using modern utilities and variants

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "modern-tailwind" with this command: npx skills add academind/ai-config/academind-ai-config-modern-tailwind

Tailwind CSS Best Practices

Core Principles

  • Prefer utility classes over custom CSS for most styling
  • Keep class lists readable by grouping: layout → spacing → typography → color → effects
  • Use semantic HTML first; utilities should enhance, not replace structure

Variants & State

  • Use hover, focus-visible, disabled, dark, and motion-safe variants where appropriate
  • Prefer data-* and aria-* variants for stateful styling tied to DOM semantics
  • Use group and peer for parent/sibling state without extra JS

Responsive & Container Queries

  • Start with the base styles, then add responsive variants (sm, md, lg, ...)
  • Use container query utilities when layout depends on parent size

Theming & Customization

  • Extend the theme in tailwind.config instead of ad-hoc custom classes
  • Use @layer for custom utilities/components when repetition is unavoidable
  • Avoid @apply except for small, repeatable patterns

Maintainability

  • Extract reusable UI into components instead of repeating large class strings
  • Keep class names deterministic; avoid dynamic string concatenation when possible

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

modern-best-practice-nextjs

No summary provided by upstream source.

Repository SourceNeeds Review
General

modern-best-practice-react-components

No summary provided by upstream source.

Repository SourceNeeds Review
General

use-modern-browser-apis

No summary provided by upstream source.

Repository SourceNeeds Review
General

modern-accessible-html-jsx

No summary provided by upstream source.

Repository SourceNeeds Review