Files
PhpSpreadsheet/docs/extra/invertlight.js
T
oleibman 284aff8d40 More Tweaks
Use a white, rather than transparent, background for logo, making it viewable in dark mode.

A bit better emulation of dark mode in the readthedocs theme, which does not handle it "naturally".
2026-09-01 16:51:23 -07:00

11 lines
536 B
JavaScript

(function(){
document.documentElement.style.filter = document.documentElement.style.filter ? '' : 'invert(100%) hue-rotate(180deg)';
const images = document.querySelectorAll('img');
images.forEach(img => { if (img.alt != 'Logo') img.style.filter = 'invert(100%) hue-rotate(180deg)';});
if (document.body.getAttribute('data-md-color-scheme') == 'slate') {
document.body.setAttribute('data-md-color-scheme', 'default');
} else {
document.body.setAttribute('data-md-color-scheme', 'slate');
}
})();