From 38ae52d1ffec58dacad08994cc2b5abeb40486bb Mon Sep 17 00:00:00 2001 From: saidulu Date: Thu, 18 Jun 2020 08:35:11 -0700 Subject: [PATCH 1/2] changed blue color to green --- snake.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snake.html b/snake.html index 8274a7d..f5edd44 100644 --- a/snake.html +++ b/snake.html @@ -95,7 +95,7 @@ // draw apple - context.fillStyle = 'blue'; + context.fillStyle = 'green; context.fillRect(apple.x, apple.y, grid-1, grid-1); From 6a14260d4da996ef80998b6efc0a5641b9a5226e Mon Sep 17 00:00:00 2001 From: saidulu Date: Thu, 18 Jun 2020 08:43:39 -0700 Subject: [PATCH 2/2] adding color blue to green --- snake.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snake.html b/snake.html index f5edd44..079d1a3 100644 --- a/snake.html +++ b/snake.html @@ -95,7 +95,7 @@ // draw apple - context.fillStyle = 'green; + context.fillStyle = 'green'; context.fillRect(apple.x, apple.y, grid-1, grid-1);