Interface Hsl

An HSL (HLS) representation of a color.

interface Hsl {
    "0": number;
    "1": number;
    "2": number;
    [key: number]: number;
}

Hierarchy (View Summary)

Indexable

  • [key: number]: number

Properties

0 1 2

Properties

"0": number

The hue channel of this color in the range [0,1].

"1": number

The saturation channel of this color in the range [0,1].

"2": number

The lightness channel of this color in the range [0,1].