xxxxxxxxxx
12
function setup() {
createCanvas(windowWidth, windowHeight);
noStroke();
background(0);
for (let i = 0; i < 1000; i++) {
fill(random(235, 255), random(150, 225), random(190, 255));
circle(random(width), random(height), random(50));
}
}