API usageText document APIEnumerationbyteOn this pagebyteAsk a question A numeric value from 0 to 255. Type number Example Create two RGB colors. CodeResultPlayground// 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);