Interface Luv

A CIELUV (CIE 1976 L*,u*,v*) representation of a color. Intended to be a perceptually uniform space. Derived from CIEXYZ. Colors are defined relative to a standard observer. Compared to CIELAB, CIELUV is considered better for emissive, self-illuminated colors (such as those on a monitor).

CIELUV

interface Luv {
    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 u* value of this color. Forms a Cartesian coordinate pair with v* to represent the four unique colors of human vision (red, green, blue, and yellow).

2: number

The v* value of this color. Forms a Cartesian coordinate pair with u* to represent the four unique colors of human vision (red, green, blue, and yellow).