feat(config): add config for default theme light/dark

This commit is contained in:
Dillon
2020-02-08 22:19:22 +08:00
parent c5e64a9a61
commit 095089fb3f
5 changed files with 14 additions and 6 deletions

View File

@@ -16,7 +16,11 @@
<body>
{{- /* Check theme isDark before body rendering */ -}}
<script>
window.isDark = (window.localStorage && window.localStorage.getItem('theme')) === 'dark';
if (!window.localStorage || !window.localStorage.getItem('theme')) {
window.isDark = '{{ .Site.Params.defaultTheme }}' === 'dark';
} else {
window.isDark = (window.localStorage && window.localStorage.getItem('theme')) === 'dark';
}
window.isDark && document.body.classList.add('dark-theme');
</script>