What problem does it solve? Choosing hardcoded Tailwind colors like red-500 or text-gray-800 breaks dark mode and theme switching, producing unreadable or inconsistent UI. This Skill enforces daisyUI 5 semantic color usage so components adapt automatically to any theme. ## Core Features & Use Cases - Semantic Color Reference: Lists all daisyUI 5 color names (primary, base-100, *-content, info, success, etc.) with their intended usage. - Color Usage Rules: Enforces theme-aware styling, such as avoiding dark: variants, using *-content colors for contrast, and reserving primary for the single most important element. - Theme Configuration: Shows how to enable built-in themes, apply data-theme attributes, define custom themes with CSS variables, and override existing themes. - Use Case: When building a card component, use bg-base-100 text-base-content instead of fixed grays so the card renders correctly in both light and dark themes without extra code. ## Quick Start Ask the AI to style a component using daisyUI semantic colors and create a custom daisyUI theme with your brand colors.