xxxxxxxxxx
33
function mouseClicked() {
saveCanvas('Week 4 Logo');
}
function setup() {
createCanvas(600, 500);
}
function draw() {
background(10, 74, 77);
//Circles
strokeWeight(3);
stroke('gold');
fill(10, 74, 77);
ellipse(300, 244, 100);
ellipse(300, 142, 100);
strokeWeight(2.5)
rect(250, 75, 100, 15)
//Text
textSize(50);
fill(10, 74, 77);
stroke('gold');
strokeWeight(5);
textSize(80);
textFont('Arial');
textAlign(CENTER, TOP);
text("CENTANNI", 300, 330);
textSize(30);
noStroke();
fill('gold');
textFont('baskerville')
text('Balance Your Life.', 300, 420);
}