xxxxxxxxxx
27
function setup() {
// Creates a canvas 600 pixels wide
// and 400 pixels high.
createCanvas(600, 400);
}
function draw() {
// Paint a sky blue background.
background(135, 206, 235);
//sun
fill("rgb(254,255,0)");//yellow
stroke("orange"); //orange outline
strokeWeight(20);
circle(550, 50, 100);
//grass on bottom half
stroke(0);//black outline
strokeWeight(1);//outline thickness
fill("green");
rect(0, 200, 600, 200);
//emojis
textSize(75)
text("🌸", 100, 250) //flower
text("🐞", mouseX, mouseY) //ladybug
}