Represents an RGB color value with alpha channel.

interface ILFColor {
    a?: number;
    b?: number;
    g?: number;
    r?: number;
}

Implemented by

Properties

Properties

a?: number

The alpha channel component, from 0-255.

b?: number

The blue channel component from 0-255.

g?: number

The green channel component, from 0-255.

r?: number

The red channel component, from 0-255.