What problem does it solve? Building consistent, maintainable UI foundations across web and mobile applications requires structured design tokens, theming infrastructure, and reusable component patterns, which are difficult to architect from scratch without established conventions. ## Core Features & Use Cases - Design Token Architecture: Define primitive, semantic, and component token hierarchies with naming conventions, CSS custom property output, and multi-platform generation via Style Dictionary. - Theming Infrastructure: Implement light/dark theme switching with React context providers, system preference detection, localStorage persistence, and accessibility modes like reduced motion and high contrast. - Component Patterns: Build compound components, polymorphic components, slot-based composition, headless hooks, and CVA-based variant systems. - Use Case: When adding dark mode to a React application, use this Skill to set up a semantic token layer, a ThemeProvider with system preference detection, and FOUC-prevention scripts for server-side rendering. ## Quick Start Ask the AI to create a design token hierarchy with light and dark theme support using CSS custom properties and a React theme provider.