xxxxxxxxxx
function setup() {
createCanvas(600, 600);
noLoop();
}
function draw() {
background(240); // Light gray background
noStroke();
// Circular shapes with overlapping colors
fill(255, 165, 0); // Orange
ellipse(300, 300, 400, 400);
fill(0, 255, 255); // Cyan
ellipse(250, 250, 300, 300);
fill(128, 0, 128); // Purple
ellipse(350, 350, 300, 300);
fill(255, 20, 147); // Deep pink
ellipse(300, 150, 200, 200);
fill(255); // White
ellipse(300, 400, 100, 100);
}