What problem does it solve? Rebranding a storefront or supporting multiple brands from one codebase usually means hunting down hard-coded colors across thousands of component files. This Skill provides a design token architecture using CSS custom properties so themes, dark mode, and white-label tenant overrides can be applied without touching component code. ## Core Features & Use Cases - Platform-Specific Theming Setup: Step-by-step configuration for Shopify (Theme Editor color schemes), WooCommerce (theme.json Global Styles), BigCommerce (Cornerstone SCSS variables), and custom/headless builds (Style Dictionary three-tier tokens). - Dark Mode Implementation: Runtime theme switching with data-theme attributes, localStorage persistence, system preference detection, and a synchronous head script that prevents flash of unstyled content. - White-Label Multi-Tenant Injection: Server-side injection of per-tenant CSS variable overrides with sanitization that only allows hex colors, lengths, and font names to prevent CSS injection attacks. - Use Case: A SaaS platform hosting hundreds of merchant storefronts injects each merchant's brand colors server-side as an inline style tag, eliminating the unbranded flash that a client-side useEffect approach caused. ## Quick Start Set up a three-tier design token system with dark mode and white-label support for my storefront on my platform.