drawing with javascript ['p5js'] Kitten

I made my first animal!

All about my kitten

My kitten was the cutest thing ever!

In my next one, I made my kitten wag its tail, and it looks even cuter! Check it out if you like!

How I made it

I made a bunch of different sized rectangles, like square-like ones and narrow ones.

Then I filled it in with its exact colour.

I also made a cute bush, and it made the picture look better!

function setup() {
  createCanvas(200, 160).parent("container");
}

function draw() {

  background(240,0,110);
  fill(0, 200, 0)
  rect(0, 130, 150, 40) // bush

  fill(197, 77, 255)
  rect(20, 40, 60, 60) // head

  fill(255, 255, 255)
  rect(60, 60, 10, 20) // right eye
  rect(30, 60, 10, 20) // left eye

  fill(0, 0, 0)
  rect(30, 60, 10, 10) // left pupil
  rect(60, 60, 10, 10) // right pupil

  fill(197, 77, 255)
  rect(20, 30, 20, 10) // down left ear
  rect(30, 20, 10, 10) // up left ear
  rect(60, 30, 20, 10) // down right ear
  rect(60, 20, 10, 10) // up right ear

  rect(40, 100, 30, 50) // left body
  rect(70, 120, 20, 30) // right body

  stroke(197, 77, 255)
  rect(41, 121, 48, 28) // long colouring body
  stroke(0, 0, 0)
  

  rect(30, 150, 10, 10) // foot
  rect(40, 150, 10, 10) // foot
  rect(80, 150, 10, 10) // foot
  rect(90, 150, 10, 10) // foot

  rect(100, 70, 10, 20) // up tail
  rect(90, 90, 10, 30) // down tail
  
}