From 6cae557ed060f04ef956b359ac43f6af586957d7 Mon Sep 17 00:00:00 2001 From: Amutha125 <57693159+Amutha125@users.noreply.github.com> Date: Thu, 14 Nov 2019 14:11:25 -0800 Subject: [PATCH] Updated Snake.html --- snake.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snake.html b/snake.html index e81b994..a043fff 100644 --- a/snake.html +++ b/snake.html @@ -94,11 +94,11 @@ } // draw apple - context.fillStyle = 'purple'; + context.fillStyle = 'yellow'; context.fillRect(apple.x, apple.y, grid-1, grid-1); // draw snake one cell at a time - context.fillStyle = 'pink'; + context.fillStyle = 'red'; 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