Bitbybit Docs
    Preparing search index...

    Type Alias ColorRGBA (Inputs.Base)

    Red, green and blue channels plus an alpha channel for transparency. Alpha 0 is fully transparent, 1 fully opaque.

    type ColorRGBA = {
        r: number;
        g: number;
        b: number;
        a: number;
    }
    Index

    Properties

    r g b a

    Properties

    r: number
    g: number
    b: number
    a: number