Update script.user.js

This commit is contained in:
Nova Cat 2024-11-30 17:36:45 -08:00
parent 330bbdfc07
commit 054870012a

View file

@ -13,7 +13,7 @@
document.documentElement.setAttribute('data-bs-theme', 'dark');
document.documentElement.classList.add("text-white");
const noBoostrapStyle = document.createElement('style');
const style = document.createElement('style');
noBoostrapStyle.innerHTML = `
body {
background: #212529;
@ -29,4 +29,4 @@ noBoostrapStyle.innerHTML = `
color: #212529;
}
`;
document.head.appendChild(noBoostrapStyle);
document.head.appendChild(style);