Jump to content

Unknown 13

From The Shivo Library

/* Any JavaScript here will be loaded for all users on every page load. */

  • Enforce Dark Mode for All Users and Remove Appearance Menu

// Function to enforce dark mode by adding necessary classes console.log('Enforcing dark mode for all users.'); document.documentElement.classList.add('vector-feature-night-mode-enabled', 'skin-theme-clientpref-night'); // Remove any existing light mode classes if present document.documentElement.classList.remove('skin-theme-clientpref-day'); console.log('Dark mode classes added:', document.documentElement.classList);