xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(250);
noStroke();
rectMode(CENTER);
for(let i=0; i<1400; i++){
let x = random(width/2);
let y = random(height/2);
fill(random(230,255),random(120,130),random(180,240),50);
ellipse(x,y,random(0,20),random(0,20));
}
for(let i=0; i<900; i++){
let x = random(width/2)+width/2;
let y = random(height/2)
fill(random(50,127),random(150,240),random(227,255),80);
ellipse(x,y,12,16);
}
for(let i=0; i<800; i++){
let x = random(width/2);
let y = random(height/2)+height/2;
fill(random(210,260),random(120,150),random(80,110),60);
rect(x,y,12,15);
}
for(let i=0; i<1000; i++){
let x = random(width/2)+width/2;
let y = random(height/2)+height/2;
fill(random(200,220),random(190,200),random(240,280),40);
ellipse(x,y,14,14);
}
}