xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
noStroke();
for(let i = 0; i < 1000; i++){
let x = random(width);
let y = random(height);
let diameter = random((height-y)/10.0);
fill(random(0, 150), random(0, 400), random(127,255), 127);
ellipse(x, y, diameter, diameter);
}
}