Convert colors between HEX, RGB, HSL, and HSB instantly. Includes color picker and shades.
A HEX color like #6C63FF consists of three pairs: 6C (red), 63 (green), FF (blue). Convert each pair from hexadecimal to decimal: 6C = 108, 63 = 99, FF = 255. Result: rgb(108, 99, 255).
HEX colors are shorter and widely used in design tools. RGB is better when you need to apply opacity or manipulate color channels programmatically. HSL is easiest for humans to reason about — adjust lightness and saturation intuitively.