int bg = #FF0088; public void setup() { size(400, 400); smooth(); background(bg); } public void draw() { float size = random(10, 100); ellipse(random(-100, 500), random(-100, 500), size, size); } public void mousePressed() { background(bg); }