xxxxxxxxxx
28
function setup() {
createCanvas(800, 400);
rectMode(CENTER);
textAlign(CENTER);
}
function draw() {
background(220);
noStroke();
fill(220, 75, 150);
circle(width/4, height/2, 80);
fill(20, 175, 150);
square(width/2 + 200, height/2, 80);
fill(220, 175, 10);
triangle(width/2, height/2 - 50,
width/2 - 45, height/2 + 40,
width/2 + 45, height/2 + 40
);
fill(0);
textSize(52)
text('SUMMER BOOTCAMP', width/2, height/2 + 100);
}