DAY mode/theme switcher

Hi, it’d be nice to have toggle to switch between themes/css or something, so as to be able to have a day mode, opposed to a dark mode, like serato, for playin at daytime with sunlight

Hey @lautaroeldj,

You could use your device’s dark/light mode setting to switch AbleSet to light mode automatically. This is a simple example that inverts the entire page:

@media (prefers-color-scheme: light) {
  html {
    filter: invert(100%);
  }
}

I hope this helps! :slight_smile: