HSLA color is an extension of HSL (Hue, Saturation, Lightness) that adds an Alpha channel for transparency.
The Hue (0–360) defines the base color.
Saturation (0%–100%) controls how vivid the color is.
Lightness (0%–100%) adjusts the brightness.
Alpha (0 to 1) sets the transparency level, where 0 is fully transparent and 1 is fully opaque.
HSLA is useful in web design for creating layered effects, shadows, or overlays with adjustable visibility.
hsla(9, 100%, 64%, 0);
hsla(9, 100%, 64%, 0.2);
hsla(9, 100%, 64%, 0.4);
hsla(9, 100%, 64%, 0.6);
hsla(9, 100%, 64%, 0.8);
hsla(9, 100%, 64%, 1);