A color in RGBA format.

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

Properties

Properties

alpha: number

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

blue: number

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

green: number

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

red: number

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