HSL to RGB Color Converter

This HSL to RGB Converter is a free online tool that instantly transforms HSL (Hue, Saturation, Lightness) color values into RGB (Red, Green, Blue) format.

HSL Input

220
80%
60%

RGB Output

RGB: rgb(71, 147, 224)
HEX: #4793e0

Color Preview

H: 220

S: 80%

L: 60%

Copied to clipboard!

How to Use It?

  1. Adjust the Hue slider (0-360) to select your base color.

  2. Set the Saturation level (0-100%) to control color intensity.

  3. Modify the Lightness value (0-100%) to adjust brightness.

  4. Click the “Convert to RGB” button to see your results.

  5. Quickly grab your RGB or HEX values with one tap.

  6. Use the color preview to visualize your final color.

Why Use an HSL to RGB Converter?

Web Development: Convert HSL values to RGB for CSS styling.

Design Consistency: Maintain color accuracy across different platforms.

Time Efficiency: Avoid manual calculation errors and save time.

Accessibility: Ensure color combinations meet contrast requirements.

Learning Tool: Understand the relationship between different color models.

Example

If you input HSL(220, 80%, 60%), This converter will instantly show you the RGB equivalent: rgb(71, 126, 235) and the HEX code: #477eeb

.button {
  background-color: rgb(71, 126, 235);
  /* or */
  background-color: #477eeb;
}

HSL to RGB Conversion Table

HSL (Hue, Saturation, Lightness)RGB (Red, Green, Blue)
hsl(0, 100%, 50%) → Pure Redrgb(255, 0, 0)
hsl(30, 100%, 50%) → Orangergb(255, 128, 0)
hsl(60, 100%, 50%) → Yellowrgb(255, 255, 0)
hsl(90, 100%, 50%) → Yellow-Greenrgb(128, 255, 0)
hsl(120, 100%, 50%) → Greenrgb(0, 255, 0)
hsl(150, 100%, 50%) → Spring Greenrgb(0, 255, 128)
hsl(180, 100%, 50%) → Cyanrgb(0, 255, 255)
hsl(210, 100%, 50%) → Sky Bluergb(0, 128, 255)
hsl(240, 100%, 50%) → Bluergb(0, 0, 255)
hsl(270, 100%, 50%) → Purplergb(128, 0, 255)
hsl(300, 100%, 50%) → Magentargb(255, 0, 255)
hsl(330, 100%, 50%) → Pinkrgb(255, 0, 128)
hsl(0, 0%, 0%) → Blackrgb(0, 0, 0)
hsl(0, 0%, 50%) → Grayrgb(128, 128, 128)
hsl(0, 0%, 100%) → Whitergb(255, 255, 255)

Frequently Asked Questions (FAQs)

1. What is HSL color format?

HSL stands for Hue, Saturation, and Lightness. It’s a cylindrical color model that many designers find more intuitive than RGB.

2. Why would I need to convert HSL to RGB?

While HSL is often easier for humans to work with, most digital displays and web browsers use RGB. Conversion is necessary for implementation.

3.Is this converter accurate?

Yes, our tool uses precise mathematical algorithms to ensure 100% accurate conversions between color models.

Share Now

Scroll to Top