bing css

a

// ==UserScript==
// @name         bing css
// @description  a
// @match        https://www.bing.com/*
// @version 0.0.1.20250706050701
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function() {
  const style = document.createElement('style');
  style.textContent = `
:root {
color-scheme: light dark !important;
}

* {
background-color: revert !important;
color: revert !important;
}
  `;
  document.head.appendChild(style);
})();