Convert colors between HEX, RGB, and HSL formats, with a handy color picker.
Converts a color between HEX, RGB, and HSL — the three formats you'll run into constantly across CSS, design tools, and image editors — with a custom-built picker to explore colors visually.
RGB defines a color by its red/green/blue light components; HSL defines it by hue (the color itself), saturation (intensity), and lightness — HSL is often more intuitive for tasks like "make this color 20% darker" since you just adjust one number.
HEX is the most common format in CSS and design tools; RGB is used when you need individual channel values (e.g. for canvas/image manipulation); HSL is convenient when generating color variations programmatically.