void setup() { size(400, 400); smooth(); background(255); noStroke(); } void draw() { // Halbtransparente Farbe in grün/blau-Tönen color col = color(0, random(255), random(255), 127); fill(col); // Größe zwischen 50 und 100 Pixeln float s = random(50, 100); ellipse(random(width), random(height), s, s); }