Convert colors between HEX, RGB, HSL formats
Yes, completely free with no limits. Convert unlimited colors between all supported formats.
No. All conversion is calculated locally in your browser. Your design work stays private.
HEX is the web standard — compact, universally supported, and easy to copy-paste. Use it for CSS, HTML, and most web frameworks. RGB is the native representation of digital screens (each pixel has red, green, and blue subpixels); use it when you need alpha transparency via rgba(). HSL describes color in human terms: Hue (0°=red, 120°=green, 240°=blue on a circular wheel), Saturation (color intensity), and Lightness (brightness). HSL is preferred by designers for creating color schemes — lighten/darken a color by adjusting L, or find complementary colors by adding 180° to the hue. HSV/HSB is similar to HSL but uses "Value/Brightness" instead of "Lightness" and is used in Photoshop and GIMP. CMYK (Cyan, Magenta, Yellow, Key/Black) is for print — CMYK colors are subtractive (ink absorbs light) while RGB/HEX colors are additive (light emitted from screen). Note that RGB-to-CMYK conversion is approximate because some RGB colors (especially bright neon greens and deep blues) cannot be reproduced in CMYK printing.