xxxxxxxxxx
24
function setup() {
createCanvas(400, 400);
background("gray");
}
function drawText() {
textSize(18);
fill(255, 255, 255);
text("Cool 😀", 30, height - 30);
}
function drawTextFrame() {
// fill(40, 40, 40);
noFill();
strokeWeight(2);
rect(20, height - 60, 90, 45);
}
function draw() {
drawTextFrame();
drawText();
}