xxxxxxxxxx
function setup() {
createCanvas(1000, 600);
background(0);
strokeWeight(1);
for(let i = 0; i < 200; i++){
noStroke();
fill(10);
rect(random(width), random(100, 300), random(10, 50), height);
}
for(let a = 0; a < 600; a++) {
noStroke();
fill(3);
rect(random(width), random(200, 600), random(10, 50), height);
fill(a/2, a, a, 4);
stroke(random(255), random(255), random(255), 18);
arc(width/2, height / 2, random(1000), random(1000), random(360), random(QUARTER_PI));
}
}