Bitbybit Docs
    Preparing search index...

    Type Alias ColorRGB (Inputs.Base)

    A color as separate red, green and blue channels, each 0-255. Use it when you need to compute with the channels; convert to a Color string before handing it to a draw call.

    type ColorRGB = {
        r: number;
        g: number;
        b: number;
    }
    Index

    Properties

    r g b

    Properties

    r: number
    g: number
    b: number