bloomberg css

a

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

(function () {
  const style = document.createElement('style');
  style.textContent = `
a {
color: revert !important;
}
  `;
  document.head.appendChild(style);
})();