var drawBackground = function() { background(15, 36, 36); stroke(0, 0, 0); strokeWeight(0); fill(242, 233, 233); ellipse(200, 200, 150, 150); }; drawBackground(); var drawBolt = function() { strokeWeight(0); fill(25, 24, 2); triangle(160, 205, 200, 195, 270, 80); triangle(230, 205, 192, 215, 125, 330); quad(180, 235, 150, 245, 220, 165, 250, 155); strokeWeight(0); stroke(25, 234, 0); line(194, 195, 215, 170); line(198, 215, 183, 232); }; drawBolt();