xxxxxxxxxx
26
// ICM WEEK1_turquoise_YICHUN LAN
// (1) turquoise circle
// (2) more blue than the first
// (3) Draw a third circle that is light pink
function setup() {
createCanvas(500,400);
}
function draw() {
background(0);
noStroke();
fill(0,200,150);
circle(250,100,80);
fill(0,200,200);
circle(250,200,80);
fill(250,200,200);
circle(250,300,80);
}