remove background on darkmode
i think im gonna remake darkmode because it breaks a lot of things
This commit is contained in:
parent
f6df8a4e24
commit
f692535424
@ -5,6 +5,7 @@ $(document).ready(function() {
|
||||
const body = document.querySelector('body');
|
||||
body.style.backgroundColor = '#141414';
|
||||
body.style.color = '#f1f1f1';
|
||||
document.body.style.backgroundImage= 'none';
|
||||
const paragraphs = document.querySelectorAll('p');
|
||||
paragraphs.forEach(function(p) {
|
||||
p.style.color = '#f1f1f1';
|
||||
@ -31,6 +32,7 @@ $(document).ready(function() {
|
||||
const body = document.querySelector('body');
|
||||
body.style.backgroundColor = '#f1f1f1';
|
||||
body.style.color = 'black';
|
||||
document.body.style.backgroundImage= "url('/images/snow1.jpg')";
|
||||
const paragraphs = document.querySelectorAll('p');
|
||||
paragraphs.forEach(function(p) {
|
||||
p.style.color = 'black';
|
||||
|
Loading…
x
Reference in New Issue
Block a user