xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(10);
noStroke();
rectMode(CENTER);
for (let i = 0; i < 100; i++) {
fill(random(110, 797), random(0, 127), random(0, 596), 527);
rect(random(width), random(height), random(10, 279), random(60, 200));
}
fill(0, 165, 55, 93);
let x = width / 2;
let y = height / 2;
let diameter = height;
ellipse(x, y, diameter, diameter);
diameter = diameter / 1.4;
}