What problem does it solve? Web projects often mix inconsistent color notations, suffer from hue drift in HSL palettes, fail contrast requirements, and clip out-of-gamut colors on modern displays. This Skill provides a systematic OKLCH-based workflow for converting, generating, and validating colors so interfaces stay perceptually consistent and accessible. ## Core Features & Use Cases - Color Conversion: Convert hex, rgb(), and hsl() values to oklch() with consistent formatting, including bulk migration of entire stylesheets while preserving gradients and CSS keywords. - Palette Generation: Build 5, 9, or 11-step numeric color scales with per-step gamut clamping, multi-hue palettes using equal chroma percentages, and tuned dark mode variants. - Contrast & Gamut Validation: Measure foreground/background pairs against APCA and WCAG 2 thresholds, detect hue drift, and add Display P3 fallbacks with @media (color-gamut: p3) patterns. - Use Case: When migrating a Tailwind v4 theme, convert all hex values in the @theme block to oklch, generate a brand-50 through brand-950 scale, then verify every text/background pair in both light and dark appearances. ## Quick Start Ask the AI to convert the hex colors in your theme.css file to oklch and check the contrast of your text colors against their backgrounds.