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