Interface IColor

Expand description

A color in RGBA format.

interface IColor {
    alpha: number;
    blue: number;
    green: number;
    red: number;
}

Properties§

§readonly alpha: number

The alpha component in the range [0-1].

§readonly blue: number

The blue component in the range [0-1].

§readonly green: number

The green component in the range [0-1].

§readonly red: number

The red component in the range [0-1].