size(200, 200); background(0); noStroke(); smooth(); int s = 200; while (s > 0) { fill(s, 0, 0); ellipse(width/2, height/2, s, s); s = s - 15; }