From afd14a2dc9a9a7b05ca65dba6d1a8017f85fa45c Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Fri, 7 Feb 2020 14:58:28 +0100 Subject: [PATCH 1/2] White background! --- voicegardens/static/voicegardens.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voicegardens/static/voicegardens.js b/voicegardens/static/voicegardens.js index 563fd64..cb5988f 100644 --- a/voicegardens/static/voicegardens.js +++ b/voicegardens/static/voicegardens.js @@ -368,7 +368,7 @@ function draw() { /** * The draw loop which is called x times a second where x is the frameRate. **/ - background("#69D2E7"); + background("white"); blendMode(BLEND); smooth(); noStroke(); From b234468633eebf8719a39add2175294dbe82eb52 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Fri, 7 Feb 2020 14:59:23 +0100 Subject: [PATCH 2/2] Not white shapes too --- voicegardens/static/voicegardens.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/voicegardens/static/voicegardens.js b/voicegardens/static/voicegardens.js index cb5988f..5a5c4ea 100644 --- a/voicegardens/static/voicegardens.js +++ b/voicegardens/static/voicegardens.js @@ -282,8 +282,7 @@ class GeneratedShape { color("red"), color("blue"), color("green"), - color("black"), - color("white") + color("black") ]; let index = floor(random(0, colourChoices.length));