Interface Rgb

A standard RGB (sRGB) representation of a color.

sRGB

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

Hierarchy (View Summary)

Indexable

  • [key: number]: number

Properties

0 1 2

Properties

"0": number

The red channel of this color in the range [0x00,0xff].

"1": number

The green channel of this color in the range [0x00,0xff].

"2": number

The blue channel of this color in the range [0x00,0xff].