Convert HEX β RGB β HSL β HSV β CMYK β live preview, palettes, contrast checker & harmony generator.
HEX (
#RRGGBB
) is the most widely used format in web design. RGB (
rgb(R, G, B)
) expresses each channel as a 0β255 integer. Both describe colour in the sRGB colour space used by screens.
HSL (Hue, Saturation, Lightness) and HSV (Hue, Saturation, Value) are human-intuitive models. Rotating the hue generates harmonious palettes. HSL is natively supported in CSS via
hsl()
and
oklch()
.
CMYK is the subtractive model used in print (Cyan, Magenta, Yellow, Key/Black). WCAG contrast ratios (AA β₯ 4.5:1, AAA β₯ 7:1) ensure text is readable for users with low vision or colour blindness.