Interface Lch

A CIELCh (CIEHLC) representation of a color. Intended to be a perceptually uniform space. Colors are defined relative to a standard observer.

interface Lch {
    0: number;
    1: number;
    2: number;
}

Hierarchy (view full)

Properties

0 1 2

Properties

0: number

The L* (perceptual brightness) value of this color in the range [0,100].

1: number

The C* (chroma or relative saturation) value of this color. Forms a polar coordinate pair with h° to represent the four unique colors of human vision (red, green, blue, and yellow).

2: number

The h° (hue angle) value of this color. Forms a polar coordinate pair with C* to represent the four unique colors of human vision (red, green, blue, and yellow).