xxxxxxxxxx
18
function setup() {
createCanvas(400, 400);
colorMode(HSB);
}
// Notice how only the first argument to the fill function changes
function draw() {
background(86);
fill(0, 100, 100);
circle(100, 100, 80);
fill(20, 100, 100);
circle(200, 200, 80);
fill(40, 100, 100);
circle(308, 300, 80)
}