xxxxxxxxxx
28
function setup() {
createCanvas(400, 400);
}
function draw() {
background("purple");
stroke("purple");
fill("rgb(187,255,0)");
circle(200, 200, 400);
stroke("rgb(187,255,0)");
fill("rgb(255,75,0)");
circle(200, 200, 320);
stroke("rgb(225,75,0)");
fill("blue");
circle(200, 200, 250);
stroke("blue");
fill("green");
circle(200, 200, 175);
stroke("orange");
fill("orange");
arc(200, 200, 175, 175, 2, PI + 2);
}