xxxxxxxxxx
function setup(){
createCanvas(300,600);
background(200,200,150);
noStroke();
fill(255,127);
for(let i=0; i<3000; i++){
let x=random(width);
let y=random(height);
let c=random((height-y)/20);
ellipse(x,y,c,c);
}
}