size(400,400); int numCircles = 200; background(255); noStroke(); for (int j=0; j < numCircles; j++) { fill(random(255), random(255), random(255), random(127,255)); float sz = random(0.2 * width); ellipse(random(width), random(height), sz, sz); }