Update script.user.js

This commit is contained in:
Nova Cat 2024-11-30 20:17:05 -08:00
parent 1b9a2f22f1
commit 88358a1d36

View file

@ -11,12 +11,16 @@
const style = document.createElement("style"); const style = document.createElement("style");
style.innerHTML = ` style.innerHTML = `
body { body, active {
background: #0f161c !important; background: #0f161c !important;
color: white; color: white;
} }
tr.hoverable:hover { tr.hoverable:hover {
background: #013e6d !important; background: #013e6d !important;
} }
.pale {
color: white;
opacity: 1;
}
`; `;
document.body.appendChild(style); document.body.appendChild(style);