void setup(){
size(700, 500);
}
void draw(){
color pc = color(251, 255, random(255));
float rl = 700;
float dc = 255;
float bs = 20;
float hb = 10;
float vc = 250;
float hp = HALF_PI;
float qp = QUARTER_PI;
float pmp = random(257, 263);
float ep = random (263, 267);
float bm = random (249, 251);
float sbc = 130;
background(46, 64, 64);
noStroke();
fill(dc, dc, dc);
rect(0, random(399, 401), rl, 7);
rect(0, random(99, 101), rl, 7);
ellipseMode(CENTER);
fill(210, dc, dc);
noStroke();
fill(78, 152, 152);
//big bubbles
ellipse(random(640, 651), bm, bs, bs);
fill(93, 170, 170);
ellipse(random(590, 601), bm, bs, bs);
fill(114, 193, 193);
ellipse(random(540, 560), bm, bs, bs);
fill(129, 212, 212);
ellipse(random(490, 510), bm, bs, bs);
fill(147, 222, 222);
ellipse(random(440, 460), bm, bs, bs);
fill(167, 231, 231);
ellipse(random(390, 410), bm, bs, bs);
fill(183, 236, 236);
ellipse(random(340, 360), bm, bs, bs);
fill(197, 249, 249);
ellipse(random(290, 310), bm, bs, bs);
//small bubbles
fill(218, sbc, dc);
ellipse(180, vc, hb, hb);
fill(248, sbc, dc);
ellipse(sbc, vc, hb, hb);
fill(dc, sbc, 221);
ellipse(80, vc, hb, hb);
fill(dc, sbc, 151);
ellipse(30, vc, hb, hb);
noStroke();
fill(pc);
arc(pmp, random(247, 253), 100, 100, hp-qp, PI+hp+qp, PIE);
fill(26, 37, 37);
ellipse(ep, random(212, 218), hb, hb);
save("pacman10.jpg");
}