Update script.user.js
This commit is contained in:
parent
1b9a2f22f1
commit
88358a1d36
1 changed files with 5 additions and 1 deletions
|
@ -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);
|
Loading…
Reference in a new issue