From ff4a345107507879b55fa3ff2104033fd882963f Mon Sep 17 00:00:00 2001 From: dhiraj Date: Mon, 19 Aug 2019 17:50:03 +0530 Subject: [PATCH] first --- snake.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snake.html b/snake.html index 512dc99..1d34f85 100644 --- a/snake.html +++ b/snake.html @@ -98,7 +98,7 @@ context.fillRect(apple.x, apple.y, grid-1, grid-1); // draw snake one cell at a time - context.fillStyle = 'red'; + context.fillStyle = 'green'; snake.cells.forEach(function(cell, index) { // drawing 1 px smaller than the grid creates a grid effect in the snake body so you can see how long it is