Interface Xyz

A CIEXYZ (CIE 1931) representation of a color. Colors are defined relative to a standard observer.

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

Hierarchy (View Summary)

Indexable

  • [key: number]: number

Properties

0 1 2

Properties

"0": number

The X value of this color.

"1": number

The Y value of this color.

"2": number

The Z value of this color.