>>6711851Added a quick and dirty theme switcher a while back, clicking the banner rotates to a new one and sets a new bg/tint colour to match.
Code if anyone wants it:
http://pastebin.com/UwGfXM1VAs it's written, the script assumes you have CSS variables like this:
:root {
--main-color: rgba(255,227,206,1.0);
--main-color-tint: rgba(255,227,206,0.5);
}
and that you have a folder relative to the current directory, /res/, which has pngs named banner1.png, banner2.png, banner3.png, etc
The only problem is that because of how I implemented it, you see it switch to the theme if you set the initial theme to anything but the default. I think maybe you can fix this by changing the transition speed to 0 (I have mine at 0.3s) before setting the theme, then resetting it after.