Jump to content

Unknown 13

From The Shivo Library
Revision as of 14:21, 26 December 2025 by Coobr (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

/* 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);