Interface RGBA

A representation of additive color mixing. Projection of primary color lights on a white screen shows secondary colors where two overlap; the combination of all three of red, green, and blue in equal intensities makes white.

interface RGBA {
    a: number;
    b: string | number;
    g: string | number;
    r: string | number;
}

Hierarchy (view full)

Properties

a b g r

Properties

a: number
b: string | number
g: string | number
r: string | number