From c4581cbbe3870e26c91bdf7d45cfb4963cfd9b01 Mon Sep 17 00:00:00 2001 From: Mithun Date: Tue, 23 Jun 2020 07:48:10 +0530 Subject: [PATCH] Changed color to red --- snake.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snake.html b/snake.html index 8274a7d..090a329 100644 --- a/snake.html +++ b/snake.html @@ -95,7 +95,7 @@ // draw apple - context.fillStyle = 'blue'; + context.fillStyle = 'red'; context.fillRect(apple.x, apple.y, grid-1, grid-1);