xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
noStroke();
for(let i = 0; i < 3000; i++){
let x = random(width);
let y = random(height);
let diameter = random(y/10.0);
fill(random(0,255),random(140,255),210,270);
rect(x,y,random(height),random(1,60),random(50));
}
}