xxxxxxxxxx
14
function setup() {
createCanvas(480, 120);
noStroke();
}
function draw() {
background(204, 226, 225); // Light blue color
fill(255, 0, 0, 200); // Red color
ellipse(132, 82, 200, 200); // Red circle
fill(0, 255, 0, 160); // Green color
ellipse(228, -16, 200, 180); // Green circle
fill(200, 200, 255, 200); // Blue color
ellipse(268, 118, 200, 200); // Blue circle
}