gespenst API - v0.1.0
    Preparing search index...

    Interface RgbColor

    An RGB color with channels in the inclusive 0-255 range.

    interface RgbColor {
        b: number;
        g: number;
        r: number;
    }

    Hierarchy (View Summary)

    Index
    b g r
    b: number

    Blue channel.

    g: number

    Green channel.

    r: number

    Red channel.