xxxxxxxxxx
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0);
fill(138,135,135)
ellipse(width/2, height/2, 200, 350);
//lines on oval
stroke(3,3,3);
strokeWeight(5);
line(260,150,215,90);
line(285,145,240,90);
//Text
stroke(10)
strokeWeight(1)
fill(173,11,5)
textSize(20)
text('pause and reflect',230,395);
//crown
if(keyCode == "1")
stroke(5)
fill(86, 50, 168)
if(mouseIsPressed)
fill(94, 33, 129)
strokeWeight(10)
if(mouseX)
fill(46, 191, 126)
stroke(11)
if(mouseY)
fill(191, 99, 46)
strokeWeight(13)
random(10,30)
circle(175,180,40)
fill(191, 167, 46)
rect(10,50,100,35);
strokeWeight(0)
triangle(10,50,10,20,30,50);
triangle(111,50,111,20,90,50);
triangle(25,50,45,20,65,50);
triangle(55,50,75,20,92,50)
}