void setup() { size(640, 360); background(50, 50, 0); frameRate(24); } void draw() { background(52); fill(255,155,0,255); //big outer circle ellipse(mouseX+40,mouseY+40,60,60); fill(255,0,0,255); // red inner circle ellipse(mouseX+40,mouseY+40,16,16); fill(255,155,0,255); // outer circle color - orange ellipse(mouseX-23,mouseY-23,120,120); fill(255,0,0,255); //inner red cirlce ellipse(mouseX-23,mouseY-23,16,16); //closeness of cirle fill(255,155,0,255); //color of big circle ellipse(mouseX-120,mouseY-120,160,160); fill(255,0,0,255); ellipse(mouseX-120,mouseY-120,16,16); }