Color Code Converter

Instantly translate colors between HEX, RGB, and HSL CSS formats.

About Color Formats

  • HEX: Hexadecimal color codes (#RRGGBB) are completely standard across HTML and CSS. Using 6 digits, it specifies color intensity mapped from 00 to FF.
  • RGB: Red, Green, Blue. Defines the intensity of each spectrum via decimal numbers ranging from 0 to 255. Widely used for manipulating dynamic colors in JS or CSS where opacity (rgba) is needed.
  • HSL: Hue, Saturation, Lightness. The most intuitive form for human designers. Hue is degrees on a color wheel (0-360), saturation is intensity percentage, and lightness is brightness percentage.