Represents a color in RGBA space.

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

Properties

Properties

alpha: number

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

blue: number

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

green: number

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

red: number

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