Convert colors between HEX, RGB, HSL, HSV, CMYK, and CSS named color formats. Preview the color in real time and copy values for use in CSS, design tools, or any application that requires specific color formats.
HEX is a 6-digit hexadecimal color code. RGB defines color by Red Green Blue channels (0-255). HSL defines Hue Saturation and Lightness as percentages.
The WCAG contrast ratio measures readability of text on a background. A ratio of 4.5:1 meets AA standard; 7:1 meets AAA.
HEX (e.g.
HSL (Hue, Saturation, Lightness) is more intuitive for humans. Adjusting brightness only changes the L value without affecting the hue, making it easy to generate color themes (e.g., different lightness variants of the same hue). In CSS, hsl() makes color adjustments easier to understand and maintain, especially for dynamic gradients, theme switching, and responsive color schemes.