xxxxxxxxxx
27
function setup() {
createCanvas(400, 400);
}
function draw() {
background(181,215,228);
fill(243, 168, 59)
stroke(0, 34, 245)
strokeWeight(25)
rect(200, 100, 150, 100)
fill(255, 255, 255, 200)
stroke(0, 0, 0)
strokeWeight(5)
ellipse(200, 150, 200)
fill(245, 195, 203)
stroke(117, 27, 124)
strokeWeight(15)
rect(50, 150, 100, 200)
}