xxxxxxxxxx
function setup() {
createCanvas(windowWidth,windowHeight);
background(0);
for(let i =0; i<100; i++){
let x = random(width);
let y = random(height);
noStroke();
fill(0,244,120,127);
ellipse(x,y,30,30);
for(let s =0; s<100; s++){
noStroke();
fill(150,150,random(30),110);
ellipse(x,y,random(20),random(20));
}
}
}