xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
for(let x=0;x<500;x=x+1){
fill(43,x,8,30);
stroke(x,5,54,10);
circle(random(0,windowWidth),random(0,windowHeight),random(0,200))
}
function draw() {
}
}