//Move circle around and change sizes void setup() { size(400,400); } void draw() { background(204,167,84); //color of the background ellipse(mouseX,mouseY,pmouseX,pmouseY); //sets the ellipse to the position of the mouse fill(84,167,204);//color of the ellipse stroke (220,37,48);//color of ellipse's stroke }