set line color

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

stroke(red, green, blue);

The three numbers stand for red, green and blue.

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

stroke(63, 191, 127);