Home
last modified time | relevance | path

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

/template/kiwiki/
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/
Dmikio.js440 let themeMode = this.darkMode;
445 themeMode = 'light';
448 themeMode = prefersColorSchemeQuery.matches ? 'dark' : 'light';
456 if(themeMode === '') {
458 themeMode = 'dark';
460 themeMode = 'light';
464 html.dataset.theme = `theme-${themeMode}`;