Art: Doodles

//Doodle Warmup

size(555,555);
background(110,255,28);
fill(0, 76);
noStroke();
smooth();
for (int y = 10; y <=height; y += 20) {
for (int x = 10; x <=width; x+= 20) {
fill(x,y,x+20,y);
ellipse(x + y/8.0,
y + x / 8.0,
15 + x/2, 10);
}
}