Output Color

Loading… Please Wait

About HSLA to RGB Converter

Input an HSLA value like hsla(180deg, 100%, 50%, 0.5) and HSLA to RGB converter will convert this value to an RGB color like rgb(128, 255, 255).

Additionally, we can even specify a background color in RGBA format. Diversify India’s HSLA to RGB converter will mix these foreground and background colors to get the resultant RGB color.

HSLA color parameters are hue, saturation, lightness, and alpha. The output RGB color parameters are red, green, and blue.

Why Convert HSLA to RGB?

Converting HSLA to RGB is useful because RGB is the standard color model for digital screens and most image processing tasks. The HSLA color model represents colors in terms of hue, saturation, lightness, and alpha (transparency), which can simplify color adjustments and manipulations in design applications. Converting HSLA to RGB allows for compatibility with a wider range of digital applications.

How to Convert HSLA to RGB

To convert HSLA to RGB, you need to transform the hue, saturation, and lightness components into red, green, and blue components, and also include the alpha (A) component.

  1. Extract the values for Hue (H), Saturation (S), Lightness (L), and Alpha (A) from the HSLA code.
    • Example: hsla(20deg, 50%, 30%, 0.5) gives H = 20, S = 50%, L = 30%.
  2. Convert the Saturation (S) and Lightness (L) values to a range of 0 to 1 by dividing by 100.
    • ๐‘† = 50% / 100 = 0.5
    • L = 30% / 100 = 0.3
  3. Calculate the intermediate values for chroma (C), X, and m.
    • Chroma ๐ถ = (1 – โˆฃ2๐ฟ – 1โˆฃ) ร— S
    • X = ๐ถ ร— (1 – โˆฃ(๐ป / 60) % 2 – 1โˆฃ)
    • m = ๐ฟ – (๐ถ / 2)
  4. Example Calculation:
    • C = (1 – โˆฃ2 ร— 0.3 – 1โˆฃ) ร— 0.5 = 0.3
    • X = 0.3 ร— (1 – โˆฃ(20 / 60) % 2 – 1โˆฃ) = 0.1
    • m = 0.3 – (0.3 / 2) = 0.15
  5. Calculate the Red (R), Green (G), and Blue (B) values based on the Hue (H) range.
    • For 0 โ‰ค ๐ป <60: (๐‘…, ๐บ, ๐ต) = (๐ถ + ๐‘š, ๐‘‹ + ๐‘š, ๐‘š)
    • For 60 โ‰ค ๐ป < 120: (๐‘…, ๐บ, ๐ต) = (๐‘‹ + ๐‘š, ๐ถ + ๐‘š, ๐‘š)
    • For 120 โ‰ค ๐ป <180: (๐‘…, ๐บ, ๐ต) = (๐‘š, ๐ถ + ๐‘š, ๐‘‹ + ๐‘š)
    • For 180 โ‰ค ๐ป < 240: (๐‘…, ๐บ, ๐ต) = (๐‘š, ๐‘‹ + ๐‘š, ๐ถ + ๐‘š)
    • For 240 โ‰ค ๐ป < 300: (๐‘…, ๐บ, ๐ต) = (๐‘‹ + ๐‘š, ๐‘š, ๐ถ + ๐‘š)
    • For 300 โ‰ค ๐ป < 360: (๐‘…, ๐บ, ๐ต) = (๐ถ + ๐‘š, ๐‘š, ๐‘‹ + ๐‘š)
    • Example: Since H = 20, (๐‘…, ๐บ, ๐ต) = (0.3 + 0.15, 0.1 + 0.15, 0.15) = (0.45, 0.25, 0.15)
  6. Convert the RGB values to a scale of 0 to 255.
    • ๐‘… = 0.45 ร— 255 โ‰ˆ 115
    • ๐บ = 0.25 ร— 255 โ‰ˆ 64
    • ๐ต = 0.15 ร— 255 โ‰ˆ 38
  7. Combine the RGB values:
    • Example: rgb(115, 64, 38)

List of Color Tools