xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(255);
noStroke();
fill(230, 255, 255)
rect(0, windowHeight/2, windowWidth, windowHeight/2);
for(let i=0; i<2000; i++){
let x = random(width);
let y = random(height/2);
let rectShape = random(y/3.0);
fill(random(0, 20), random(100, 188), random(127, 255), random(255));
rect(x, y, rectShape, rectShape);
}
for(let i=0; i<10; i++){
fill(255, 251, 192, 30);
let diameter = 500;
ellipse(windowWidth-50, 50, diameter, diameter);
diameter = diameter / 2.5;
}
}