set background color

A group of three numbers can be used to set
the background color of the canvas.

background(red, green, blue);

red, green and blue stand for three numbers.

Each number is from 0 up to 255 (dark to light).
So background(0, 255, 0); gives bright green.

background(63, 191, 127);