From 55fb65f14cae05ba1a1e9aaa55234be1b5a958ae Mon Sep 17 00:00:00 2001 From: srdevteam <53894722+srdevteam@users.noreply.github.com> Date: Wed, 18 Aug 2021 07:01:37 +0530 Subject: [PATCH 01/15] pink blue --- snake.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snake.html b/snake.html index 7ed2057..b5176f0 100644 --- a/snake.html +++ b/snake.html @@ -96,12 +96,12 @@ // draw apple - context.fillStyle = 'red'; + context.fillStyle = 'pink'; context.fillRect(apple.x, apple.y, grid-1, grid-1); // draw snake one cell at a time - context.fillStyle = 'white'; + context.fillStyle = 'blue'; 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 From 4303755d262534c4cad34458cb74b7828f5e93e8 Mon Sep 17 00:00:00 2001 From: swetha Date: Thu, 9 Sep 2021 12:38:33 +0530 Subject: [PATCH 02/15] apple color changed to orange from pink --- snake.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snake.html b/snake.html index b5176f0..e3dd6ae 100644 --- a/snake.html +++ b/snake.html @@ -96,7 +96,7 @@ // draw apple - context.fillStyle = 'pink'; + context.fillStyle = 'orange'; context.fillRect(apple.x, apple.y, grid-1, grid-1); From 1267786276b79b8026ee6b407adb1fb8ef484736 Mon Sep 17 00:00:00 2001 From: swetharamdurg <53313071+swetharamdurg@users.noreply.github.com> Date: Thu, 9 Sep 2021 12:41:12 +0530 Subject: [PATCH 03/15] apple orange snake pink --- snake.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snake.html b/snake.html index e3dd6ae..9ee4ffb 100644 --- a/snake.html +++ b/snake.html @@ -101,7 +101,7 @@ context.fillRect(apple.x, apple.y, grid-1, grid-1); // draw snake one cell at a time - context.fillStyle = 'blue'; + context.fillStyle = 'pink'; 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 From 8e2242420c9947e9e6a1ede02912d9b23ccc2054 Mon Sep 17 00:00:00 2001 From: John Smith <“swetha.ramdurg@skillrary.com”> Date: Wed, 15 Sep 2021 12:14:38 +0530 Subject: [PATCH 04/15] red snake and white apple --- snake.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snake.html b/snake.html index 9ee4ffb..402f2c7 100644 --- a/snake.html +++ b/snake.html @@ -96,12 +96,12 @@ // draw apple - context.fillStyle = 'orange'; + context.fillStyle = 'white'; 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 From 91662aff501af1ed7959381861f9ef157f3c24f0 Mon Sep 17 00:00:00 2001 From: John Smith <“jsmith@seas.upenn.edu”> Date: Fri, 12 Nov 2021 12:14:20 +0530 Subject: [PATCH 05/15] blue apple and white snake --- snake.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snake.html b/snake.html index 402f2c7..612261e 100644 --- a/snake.html +++ b/snake.html @@ -96,12 +96,12 @@ // draw apple - context.fillStyle = 'white'; + context.fillStyle = 'blue'; context.fillRect(apple.x, apple.y, grid-1, grid-1); // draw snake one cell at a time - context.fillStyle = 'red'; + context.fillStyle = 'white'; 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 From b017ca582ba5d70171aa702beb94d0d94d55fa50 Mon Sep 17 00:00:00 2001 From: swetharamdurg <53313071+swetharamdurg@users.noreply.github.com> Date: Fri, 12 Nov 2021 12:18:59 +0530 Subject: [PATCH 06/15] Update snake.html orange and red --- snake.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snake.html b/snake.html index 612261e..72e6158 100644 --- a/snake.html +++ b/snake.html @@ -96,12 +96,12 @@ // draw apple - context.fillStyle = 'blue'; + context.fillStyle = 'orange'; context.fillRect(apple.x, apple.y, grid-1, grid-1); // draw snake one cell at a time - context.fillStyle = 'white'; + 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 From 9cbd514c1e8ebe8352d4095d754240df38ab7194 Mon Sep 17 00:00:00 2001 From: swetha Date: Wed, 24 Nov 2021 12:39:34 +0530 Subject: [PATCH 07/15] white apple and yellow snake --- snake.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snake.html b/snake.html index 72e6158..a3b0732 100644 --- a/snake.html +++ b/snake.html @@ -96,12 +96,12 @@ // draw apple - context.fillStyle = 'orange'; + context.fillStyle = 'white'; context.fillRect(apple.x, apple.y, grid-1, grid-1); // draw snake one cell at a time - context.fillStyle = 'red'; + context.fillStyle = 'yellow'; 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 From 919479324821719087c5c5beae856485f0b7b925 Mon Sep 17 00:00:00 2001 From: swetharamdurg <53313071+swetharamdurg@users.noreply.github.com> Date: Wed, 24 Nov 2021 12:42:28 +0530 Subject: [PATCH 08/15] pinkpink --- snake.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snake.html b/snake.html index a3b0732..a1ad433 100644 --- a/snake.html +++ b/snake.html @@ -96,12 +96,12 @@ // draw apple - context.fillStyle = 'white'; + context.fillStyle = 'pink'; context.fillRect(apple.x, apple.y, grid-1, grid-1); // draw snake one cell at a time - context.fillStyle = 'yellow'; + context.fillStyle = 'pink'; 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 From fa990883afee04a91ed1587142878649c5e166f0 Mon Sep 17 00:00:00 2001 From: reena Date: Fri, 1 Apr 2022 11:45:56 +0530 Subject: [PATCH 09/15] snake and apple color changed to red from pink --- snake.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snake.html b/snake.html index a1ad433..0f28eb2 100644 --- a/snake.html +++ b/snake.html @@ -96,12 +96,12 @@ // draw apple - context.fillStyle = 'pink'; + context.fillStyle = 'red'; 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 From e4a540ec94d80b9c523564bccc8b5edb39713242 Mon Sep 17 00:00:00 2001 From: swetharamdurg <53313071+swetharamdurg@users.noreply.github.com> Date: Fri, 1 Apr 2022 11:47:28 +0530 Subject: [PATCH 10/15] Update snake.html --- snake.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snake.html b/snake.html index 0f28eb2..402f2c7 100644 --- a/snake.html +++ b/snake.html @@ -96,7 +96,7 @@ // draw apple - context.fillStyle = 'red'; + context.fillStyle = 'white'; context.fillRect(apple.x, apple.y, grid-1, grid-1); From 3ed25463fe6cca10c2350fca8cffea20fd5a3d0d Mon Sep 17 00:00:00 2001 From: reena Date: Fri, 15 Jul 2022 07:36:55 +0530 Subject: [PATCH 11/15] snake green apple --- snake.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snake.html b/snake.html index 402f2c7..c22b1d1 100644 --- a/snake.html +++ b/snake.html @@ -96,7 +96,7 @@ // draw apple - context.fillStyle = 'white'; + context.fillStyle = 'green'; context.fillRect(apple.x, apple.y, grid-1, grid-1); From f461f9d6f2cd29911dcbca7f1899309de52fefc2 Mon Sep 17 00:00:00 2001 From: swetharamdurg <53313071+swetharamdurg@users.noreply.github.com> Date: Fri, 15 Jul 2022 07:43:21 +0530 Subject: [PATCH 12/15] Update snake.html --- snake.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snake.html b/snake.html index c22b1d1..29c5421 100644 --- a/snake.html +++ b/snake.html @@ -96,7 +96,7 @@ // draw apple - context.fillStyle = 'green'; + context.fillStyle = 'blue'; context.fillRect(apple.x, apple.y, grid-1, grid-1); From 597d622815e82fe836d92f6f50fdf9eeeaf106fd Mon Sep 17 00:00:00 2001 From: swetharamdurg <53313071+swetharamdurg@users.noreply.github.com> Date: Fri, 15 Jul 2022 07:44:06 +0530 Subject: [PATCH 13/15] Update snake.html --- snake.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snake.html b/snake.html index 29c5421..2a0f234 100644 --- a/snake.html +++ b/snake.html @@ -1,4 +1,4 @@ -i + snake game From 93d0b13f586da17402bf2f299d494ceefa26981d Mon Sep 17 00:00:00 2001 From: reena Date: Fri, 15 Jul 2022 07:45:44 +0530 Subject: [PATCH 14/15] yellow --- snake.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snake.html b/snake.html index 2a0f234..c2982ca 100644 --- a/snake.html +++ b/snake.html @@ -96,7 +96,7 @@ // draw apple - context.fillStyle = 'blue'; + context.fillStyle = 'yellow'; context.fillRect(apple.x, apple.y, grid-1, grid-1); From fafe9e08eee5c89c4c7815c1569b1185a7d641ee Mon Sep 17 00:00:00 2001 From: reena Date: Fri, 12 Aug 2022 13:04:44 +0530 Subject: [PATCH 15/15] changed the snake color to blue and apple to red --- snake.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snake.html b/snake.html index c2982ca..cf243fe 100644 --- a/snake.html +++ b/snake.html @@ -96,12 +96,12 @@ // draw apple - context.fillStyle = 'yellow'; + context.fillStyle = 'red'; context.fillRect(apple.x, apple.y, grid-1, grid-1); // draw snake one cell at a time - context.fillStyle = 'red'; + context.fillStyle = 'blue'; 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