Interface Hsv

An HSV (HSB) representation of a color.

interface Hsv {
    "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 value (brightness) channel of this color in the range [0,1].