GeoNetAgent, LDAPWeb, server-audit, server-connection
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
478 B

(function () {
var key = 'databaselist-ui-theme';
var mode = 'system';
try {
mode = localStorage.getItem(key) || 'system';
} catch (e) {}
var resolved = mode === 'system'
? (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light')
: (mode === 'light' ? 'light' : 'dark');
document.documentElement.setAttribute('data-theme-pref', mode);
document.documentElement.setAttribute('data-theme', resolved);
})();