xxxxxxxxxx
21
function setup() {
createCanvas(400, 400);
}
function draw() {
background(172,216,229);
strokeWeight(25);
stroke(16, 4, 250);
fill(255, 165, 33);
rect(200, 100, 150, 100)
strokeWeight(5);
stroke(0, 0, 0);
fill(251, 251, 251, 200);
circle(200, 150, 200);
strokeWeight(15);
stroke(129, 2, 126);
fill(255, 193, 202);
rect(50, 150, 100, 200)
}