xxxxxxxxxx
60
function setup() {
createCanvas(400, 400);
}
function draw() {
background(230, 100, 120);
//Head and Neck
fill(200, 180, 120);
noStroke();
ellipse(200, 300, 250, 300);
fill(100, 100, 230);
rect(115, 250, 100, 75, 5, 15, 30, 30);
//Glasses
fill(100, 100, 230);
rect(245, 250, 100, 75, 15, 5, 30, 30);
fill(50, 50, 200);
rect(215, 290, 33, 5);
fill(50, 50, 200);
rect(215, 270, 36, 10);
fill(50, 50, 200);
rect(65, 270, 50, 17);
//Text
textSize(50);
fill(100, 100, 230);
textFont('Broadway');
textStyle(BOLD);
text('Classy', 36, 90);
textSize(50);
fill(50, 50, 200);
textFont('Broadway');
textStyle(BOLD);
text('Glassy', 200, 120);
//glasses shine 2
fill(150, 150, 200);
noStroke();
ellipse(180, 270, 50, 30);
//glasses shine 1
fill(150, 150, 200);
noStroke();
ellipse(310, 270, 50, 30);
}