Home
last modified time | relevance | path

Searched refs:themeMode (Results 1 – 2 of 2) sorted by relevance

/template/kiwiki/
H A Dmain.php25 $themeMode = tpl_getConf('DefaultTheme'); variable
39 …$themeMode = in_array($_COOKIE['theme'], ['darkmode', 'lightmode', 'system-color']) ? $_COOKIE['th… variable
41 setcookie("theme",$themeMode);
45 setcookie("theme",$themeMode);
71 <body id="kiwiki" class="<?php echo $themeMode; ?>">
/template/mikio/assets/
H A Dmikio.js442 let themeMode = this.darkMode;
447 themeMode = 'light';
450 themeMode = prefersColorSchemeQuery.matches ? 'dark' : 'light';
458 if(themeMode === '') {
460 themeMode = 'dark';
462 themeMode = 'light';
466 html.dataset.theme = `theme-${themeMode}`;