tailwind-best-practice
Installation
SKILL.md
Tailwind CSS v4 Best Practices
Team standard for styling with Tailwind CSS v4 — CSS-first config, design tokens via CSS variables, class-based dark mode.
No Hardcoded Colors (MANDATORY)
Never use raw color values in components. All colors must come from the design token system defined in globals.css.
// BAD: Hardcoded colors
<div className="bg-blue-500 text-white border-gray-200" />
<div className="bg-[#1a73e8] text-[#ffffff]" />
// GOOD: Semantic token colors
<div className="bg-primary text-primary-foreground border-border" />
Before writing any styles: Confirm the color theme with the user. Register all colors in globals.css as CSS variables, then use them everywhere.
Related skills