xxxxxxxxxx
87
function setup() {
createCanvas(600,400);
}
function draw() {
background(255, 235, 242);
noStroke();
fill(211, 180, 191)
circle(300,600,1000)
noStroke();
fill(232, 207, 225);
circle(300,200, 350);
// white circle
noStroke();
fill(250);
circle(200,200,50);
noStroke();
fill(250);
circle(200,200,50);
//light grey rectangle
noStroke();
fill(206, 198, 198);
rect(50,300,50,100);
//dark grey rectangle
noStroke();
fill(144, 141, 141);
rect(350,300, 150,25);
strokeWeight(5);
stroke(245, 233, 162);
line(100,170,100 , 200);
strokeWeight(5);
stroke(245, 233, 162);
line(140,160,150, 190);
strokeWeight(5);
stroke(245, 233, 162);
line(160,130,180,145);
strokeWeight(5);
stroke(245, 233, 162);
line(160,100,190,100);
strokeWeight(5);
stroke(245, 233, 162);
line(155,70,190,60);
noStroke();
fill(218, 227, 231);
ellipse(450,70,150,70);
noStroke();
fill(218, 227, 231);
circle(450,50,70);
noStroke();
fill(218, 227, 231);
circle(400,60,70);
noStroke();
fill(218, 227, 231);
circle(500,70,70);
noStroke();
fill(218, 227, 231);
circle(420,85,70);
noStroke();
fill(218, 227, 231);
circle(470,90,70);
noStroke();
fill(245, 233, 162);
frameRate(7);
circle(100,100,random(0,100));
}