• One of the many available factories for Color. This variant takes a single number parameter, which should be Uint32 RGBA value, where Red channel is least significant byte.

    Example usage:

     const colorGreenOpaque = ColorUint32(0xff00ff00)
    

    For more convenience factories, see:

    Returns

    Color object. Please refer to Color API document, on extended information how to use LCJS Colors.

    Parameters

    • uint32: number

      Single number which is Uint32, 4 bytes each is 1 color channel in order RGBA, where red is least significant byte.

    Returns Color