set line color

A group of three numbers can be used to set
the outline of the rectangle to a color.

stroke(red, green, blue);

Each number is from 0 up to 255.

The three numbers stand for red, green and blue.
So stroke(0, 255, 0); gives bright green.

stroke(63, 191, 127);