Interface Color

A color.

interface Color {
    "0": number;
    "1": number;
    "2": number;
    "3": number;
}

Properties

0 1 2 3

Properties

"0": number

The red component of the color in the range [0,1].

"1": number

The green component of the color in the range [0,1].

"2": number

The blue component of the color in the range [0,1].

"3": number

The alpha component of the color in the range [0,1].