making dark mode text readable for real this time
This commit is contained in:
parent
e5385d41b5
commit
86d6adfca8
@ -32,6 +32,8 @@ $(document).ready(function() {
|
||||
});
|
||||
const dZone = document.querySelector('.danger-zone');
|
||||
dZone.style.color = '#ff6847';
|
||||
const dZoneText = document.querySelector('.modal-content')
|
||||
dZoneText.style.p.color = '#ff3c00';
|
||||
} else {
|
||||
const body = document.querySelector('body');
|
||||
body.style.backgroundColor = '#f1f1f1';
|
||||
@ -63,6 +65,8 @@ $(document).ready(function() {
|
||||
});
|
||||
const dZone = document.querySelector('.danger-zone');
|
||||
dZone.style.color = '#010101';
|
||||
const dZoneText = document.querySelector('.modal-content')
|
||||
dZoneText.style.p.color = '#010101';
|
||||
}
|
||||
}
|
||||
$("#darkModeCheckbox").on("change", function() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user