Skip to main content

byte

A numeric value from 0 to 255.

Type

number

Example

Create two RGB colors.

// Create RGB colors using bytes in decimal and hexadecimal.

// The resulting colors are green (decimal) and red (hexadecimal).

let rgbColorGreen = Api.RGB(0, 255, 0);
let rgbColorRed = Api.RGB(0xff, 0, 0);