xxxxxxxxxx
let red ;
let blue;
let grey;
let orange;
function setup() {
createCanvas(600, 600);
background(255,255,255);
grey = color (random(0,300));
blue = color (random (0,238));
red = color (random(255,48));
orange = color(random(115,69));
}
function draw() {
//Head//
fill(grey);
rect(60,140,500,450);
//Eyes//
fill(blue);
circle(190,315,90);
fill(blue);
circle(460,315,90);
//Ears//
fill(red);
rect(30,300,50,80);
fill(red);
rect(540,300,50,80);
//Horn//
fill(red);
circle(320,140,90);
fill(orange);
circle(320,110,60);
fill(red);
triangle(310,80,310,40,275,40);
//Nose//
fill(orange);
triangle(330,390,313,412,360,415);
//Mouth//
fill(red);
rect(220,480,200,60);
}