xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight); background(255);
strokeWeight(5);
for (let i = 0; i < 400; i++) {
let x = random(width);
let y = random(height);
let diameter = random(5, 75)
let a = diameter/5
stroke(random(0, 255), random(0, 255), random(0, 255), 15);
fill(218, 240, 253, 100);
ellipse(x, y, diameter, diameter);
noStroke();
fill(255, 255, 255);
ellipse(x+a, y+a, a, a);
}
}