Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function newColour(clip, colour) {
MCColor = new Color(clip);
MCColor.setRGB(colour);
}
//
clips = [menu, content, bottom, middle];
colours = ['0x9999AA', '0x3333AA', '0x1234cc', '0x1111BB'];
//
for (i=0; i<4; i++) {
newColour(clips[i], colours[i]);
}