Bitbybit Docs
    Bereite Suchindex vor...

    Typenalias 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

    Eigenschaften

    r g b

    Eigenschaften

    r: number
    g: number
    b: number