AbleSet themes option:light or dark

Hi AbleSet!Love This App!
Thank you for your great work!

Is there a possibility to add an option in AbleSet Themes to switch between light and dark modes (like Ableton Live does)? Maybe it could follow the system settings? The default themes are great! However, when performing outdoors, we often struggle to see the computer screen clearly due to sunlight. :heart:

Hey @GOODSHOW, welcome to the forum!

That’s a great use case! I’ll see what I can do about this. In the meantime, you could use the Custom CSS feature to invert the colors of AbleSet to simulate a light mode based on your device’s system settings:

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

I hope this helps! :slight_smile:

1 Like