Color Converter

Convert between HEX, RGB, HSL, HWB, and CMYK formats

Universal Color Converter

Enter a color in any supported format and instantly see it converted to every other format. The converter auto-detects whether you typed HEX, RGB, HSL, HWB, or CMYK notation.

#6C63FF
HEX#6C63FF
RGBrgb(108, 99, 255)
HSLhsl(243, 100%, 69%)
HWBhwb(243 39% 0%)
CMYKcmyk(58%, 61%, 0%, 0%)
NColB3, 39%, 0%

Supported Formats

FormatExampleDescription
HEX#ff6600Hexadecimal notation (3 or 6 digits)
RGBrgb(255, 102, 0)Red, Green, Blue (0–255 each)
HSLhsl(24, 100%, 50%)Hue, Saturation, Lightness
HWBhwb(24 0% 0%)Hue, Whiteness, Blackness
CMYKcmyk(0%, 60%, 100%, 0%)Cyan, Magenta, Yellow, Key (print)
NColR24, 0%, 0%Natural Color notation
💡
Tip: You can paste colors from any design tool. The converter understands hex with or without the # prefix, and CSS functional notations like rgb(),hsl(), and hwb().

How Color Conversion Works

All color models describe the same visible spectrum, but from different perspectives.RGB is additive (light mixing), CMYK is subtractive (ink mixing), and HSL/HWB are cylindrical models designed for human intuition.

Internally, conversions go through RGB as the common intermediate. For example, HSL → RGB → CMYK. This means every format can be reached from any other with at most two conversion steps.

Why multiple formats?

Different contexts favor different models. Web developers use HEX and RGB in CSS. Designers prefer HSL for its intuitive hue control. Print professionals need CMYK for accurate ink separation. NCol is a newer notation that maps naturally to how humans describe colors.