Colors are composed of three primary colors on the computer: red, green and blue (RGB). You can also set the alpha value. This value determines the transparency of the color. All these values must be a number between 0 and 255. If you set the alpha value to 0, the color is fully transparent, with 255 it is fully opaque. For all functions that expect a color, e.g. Fill, Background, Stroke, you can also specify these four values to set the color.

Draw a circle of size 50 at x and y coordinates 100, 100. Set the fill color to red (Red=255, Green=0, Blue=0, Alpha=255). You can also omit the alpha value. Set the background to gray tone 128 beforehand. The dash of the circle should not be displayed.