new colours for the icons and background

This commit is contained in:
Cristina Cochior 2020-02-13 21:22:32 +01:00
parent 3c4d86884a
commit b200854e03
5 changed files with 10 additions and 10 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -172,7 +172,7 @@ function setupRecording() {
recordButton.mousePressed(record); recordButton.mousePressed(record);
recordButton.class("button record"); recordButton.class("button record");
stopButton = createImg("../static/images/STOP-BWW.png"); stopButton = createImg("../static/images/STOP-BW.png");
stopButton.mousePressed(stop); stopButton.mousePressed(stop);
stopButton.class("button stop"); stopButton.class("button stop");
@ -526,16 +526,16 @@ function setup() {
setupRecording(); setupRecording();
bgChoices = [ bgChoices = [
color("#F6B2FF"), // color("#F6B2FF"),
color("#F58F6C"), // color("#F58F6C"),
color("#C3EFDB"), color("#C3EFDB"),
color("#ADCA95"), // color("#ADCA95"),
color("#F58F6C"), // color("#F58F6C"),
color("#A5F1F7"), // color("#A5F1F7"),
color("#FFC266"), // color("#FFC266"),
color("#FF66BB"), // color("#FF66BB"),
color("#F6B2FF"), // color("#F6B2FF"),
color("#CFE4D9") // color("#CFE4D9")
]; ];
bgColour = bgChoices[floor(random(0, bgChoices.length - 1))]; bgColour = bgChoices[floor(random(0, bgChoices.length - 1))];
} }