Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 713 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 713 Bytes

Snake

The player controls a snake, which roams around in the console, picking up food, trying to avoid hitting its own tail or the edges of the playing area. Each time the snake eats a piece of food, its tail grows longer, making the game increasingly difficult. The user controls the direction of the snake's head (up, down, left, or right), and the snake's body follows.

Screenshots

image

Colors

  • Snake Body: #960096 / rgb(150, 0, 150)
  • Snake Head: #fa00fa / rgb(250, 0, 250)
  • Food: #00fac / rgb(0, 250, 200)
  • Border: #ffff00 / rgb(255, 255, 0)
  • Background: #000000 / rgb(0, 0, 0)