xxxxxxxxxx
14
function setup() {
createCanvas(windowWidth, windowHeight);
colorMode(HSB, 360, 100, 100, 100);
noStroke();
background(0);
for(let i = 0; i < 1000; i++){
let x = random(width);
let y = random(height);
let b = map(y, 0, height, 0, 100);
fill(random(80, 240), 80, 80, b);
circle(x, y, random((height - y) * 0.1));
}
}