HSL to RGB Converter

Convert HSL (Hue, Saturation, Lightness) values to RGB color format in multiple representations.

Results:

rgb(0, 0, 0)
rgb(0% 0% 0%)
{ r: 0, g: 0, b: 0 }
[0, 0, 0]
#000000
r: 0.000, g: 0.000, b: 0.000
0
0
0

About HSL to RGB Conversion

RGB colors can be represented in several formats:

  • Functional Notation: rgb(255, 0, 0)
  • CSS Percentage: rgb(100% 0% 0%)
  • HEX Code: #FF0000
  • Components:
    • Red: 0-255
    • Green: 0-255
    • Blue: 0-255
  • Normalized Values: All components scaled to 0-1 range

RGB is the standard color model used in digital displays and web development.