Update script.user.js
This commit is contained in:
parent
e9171f71ec
commit
e54b49d2c0
1 changed files with 2 additions and 2 deletions
|
@ -15,11 +15,11 @@ document.documentElement.setAttribute('data-bs-theme', 'dark'); // Set dark mode
|
||||||
document.documentElement.classList.add("text-white"); // Set the text color with BS5's respective class.
|
document.documentElement.classList.add("text-white"); // Set the text color with BS5's respective class.
|
||||||
const style = document.createElement('style'); // In case the page doesn't use BS5
|
const style = document.createElement('style'); // In case the page doesn't use BS5
|
||||||
style.innerHTML = `
|
style.innerHTML = `
|
||||||
body, .footer, .body, textarea {
|
body, .footer, .body {
|
||||||
background: #212529 !important;
|
background: #212529 !important;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
.notes {
|
.notes, textarea, select {
|
||||||
background: #2D3142 !important;
|
background: #2D3142 !important;
|
||||||
}
|
}
|
||||||
.trapezoid {
|
.trapezoid {
|
||||||
|
|
Loading…
Reference in a new issue