xxxxxxxxxx
25
function setup() {
createCanvas(400, 400);
}
//hoping that changing the background a bit doesn't count as using color
function draw() {
background(100);
rect(0, 280, 400, 120);
ellipse(200, 340, 79, 40);
circle(200, 170, 81)
line(170, 143, 170, 100);
line(190, 130, 190, 110);
line(210, 137, 210, 100)
line(230, 140, 230, 110);
}