Interface HSLA

The HSL model describes colors in terms of hue, saturation, and lightness (also called luminance).

interface HSLA {
    a: number;
    h: string | number;
    l: string | number;
    s: string | number;
}

Hierarchy (view full)

Properties

a h l s

Properties

a: number
h: string | number
l: string | number
s: string | number