Interface HSL

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

interface HSL {
    h: string | number;
    l: string | number;
    s: string | number;
}

Hierarchy (view full)

Properties

h l s

Properties

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