tailwind-3
Installation
SKILL.md
Styling Decision Tree
Aurora form layout? → layout__container + col-* classes
Theme colors needed? → bg-primary, text-on-primary, bg-card, etc.
Dark mode support? → Use theme utilities (auto) OR dark:* variants
Responsive design? → Mobile-first with sm:/md:/lg:/xl: prefixes
Custom component style? → @apply in SCSS for reusable patterns
One-off styling? → Inline Tailwind classes
Critical Rules
Use Aurora Grid for Forms
<!-- ✅ ALWAYS: Aurora layout system for forms -->
<div class="layout__container">
<mat-form-field class="col-6">...</mat-form-field>
Related skills