Browse Source

new colours for the icons and background

main
Cristina Cochior 4 years ago
parent
commit
b200854e03
  1. BIN
      voicegardens/static/images/ABOUT-BW.png
  2. BIN
      voicegardens/static/images/GARDEN-BW.png
  3. BIN
      voicegardens/static/images/RECORD-COLOR.png
  4. BIN
      voicegardens/static/images/STOP-BW.png
  5. 20
      voicegardens/static/voicegardens.js

BIN
voicegardens/static/images/ABOUT-BW.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

BIN
voicegardens/static/images/GARDEN-BW.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 9.2 KiB

BIN
voicegardens/static/images/RECORD-COLOR.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

BIN
voicegardens/static/images/STOP-BW.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

20
voicegardens/static/voicegardens.js

@ -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))];
} }

Loading…
Cancel
Save