new colours for the icons and background
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 9.2 KiB |
Before Width: | Height: | Size: 6.0 KiB After Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 4.2 KiB |
@ -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))];
|
||||||
}
|
}
|
||||||
|