Automatic Light/Dark mode based on system preferences
planned
Angelo
Small nice to have: Would be handy to have the editor automatically open in light/dark mode based on system settings unless set by the user in configuration :)
ie
const isDarkMode = () => window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', (event) => fn(event.matches));
Laura Kalbag
planned