Implement night mode toggle in top navbar

This commit is contained in:
billz
2021-02-15 19:02:13 +00:00
parent faffbfea51
commit 4378ff7add
3 changed files with 27 additions and 1 deletions

View File

@@ -397,6 +397,17 @@ function set_theme(theme) {
setCookie('theme',theme,90);
}
$(function() {
$('#night-mode').change(function() {
var state = $(this).is(':checked');
if (state == true && getCookie('theme') != 'lightsout.css') {
set_theme('lightsout.css');
} else {
set_theme('custom.php');
}
});
});
function setCookie(cname, cvalue, exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000));