xxxxxxxxxx
function setup() {
createCanvas(windowWidth,windowHeight);
background(100);
for(let i = 0;100>i;i++){
noStroke()
w=random(100,windowWidth-100);
h=random(100,windowHeight-100);
r=random(40,150);
for(let j=0;2>j;j++){
fill(255*j)
r=r-3*j
triangle(w+r/2.82,h+r/4.22,w+r/2.82,h-r/4.22,w+r*0.6,h)
triangle(w-r/2.82,h+r/4.22,w-r/2.82,h-r/4.22,w-r*0.6,h)
ellipse(w,h,r,r/1.5)
}
stroke(3)
fill(60,30,30,150)
r=r/2
for(let j=0;10>j;j++){
ellipse(w,h,r)
r=r/1.3
}
}
}