Output Color
Loading… Please Wait
About HSLA to RGBA Converter
Input an HSLA value like hsla(180deg, 100%, 50%, 0.5)
and HSLA to RGBA converter will convert this value to an RGBA color like rgba(0, 255, 255, 0.5)
.
HSLA color parameters are hue, saturation, lightness, and alpha. The output RGBA color parameters are red, green, blue, and alpha.
Why Convert HSLA to RGBA?
Converting HSLA to RGBA is useful when you need to translate colors defined by hue, saturation, and lightness into their red, green, and blue components with an alpha channel. The RGBA format is widely used in web design and digital graphics for its ability to represent colors with transparency, allowing for more nuanced and dynamic visual effects.
How to Convert HSLA to RGBA
To convert HSLA to RGBA, you need to transform the hue, saturation, and lightness components into red, green, and blue values, and then include the alpha component.
- Extract the values for Hue (H), Saturation (S), Lightness (L), and Alpha (A) from the HSLA code.
- Example:
hsla(120deg, 60%, 50%, 0.5)
gives H = 120, S = 60%, L = 50%, A = 0.5.
- Example:
- Convert the Saturation (S) and Lightness (L) values to a range of 0 to 1 by dividing by 100.
- π = 60% / 100 = 0.6
- L = 50% / 100 = 0.5
- Calculate the intermediate values for chroma (C), X, and m.
- Chroma πΆ = (1 – β£2πΏ – 1β£) Γ S
- X = πΆ Γ (1 – β£(π» / 60) % 2 – 1β£)
- m = πΏ – (πΆ / 2)
- Example Calculation:
- C = (1 – β£2 Γ 0.5 – 1β£) Γ 0.6 = 0.6
- X = 0.6 Γ (1 – β£(120 / 60) % 2 – 1β£) = 0
- m = 0.5 – (0.6 / 2) = 0.2
- 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 = 120, (π , πΊ, π΅) = (0.2, 0.6 + 0.2, 0 + 0.2) = (0.2, 0.8, 0.2)
- Convert the RGB values to a scale of 0 to 255.
- π = 0.2 Γ 255 β 51
- πΊ = 0.8 Γ 255 β 204
- π΅ = 0.2 Γ 255 β 51
- Combine the RGB values with the Alpha (A) value to form the RGBA value.
- Example:
rgba(51, 204, 51, 0.5)
- Example:
List of Color Tools
- Color Converter: Convert to RGBA, Hex, HSLA, HWB, HSV, or CMYK
- Color Picker: Pick RGBA, Hex, HSLA, HWB, HSV, or CMYK Colors
- Color Mixer: Mix Colors Online for Free
- Random Color Generator
- Color Shades Generator
- Color Contrast Checker
- RGBA to HSLA Converter
- HSLA to RGB Converter
- HSLA to Hex Converter
- HSLA to HSL Converter
- HSLA to HWB Converter
- HSLA to HSV Converter
- HSLA to CMYK Converter