Skip to content

Commit 514ed5e

Browse files
authored
Default system if theme unrecognized (#440)
1 parent d360290 commit 514ed5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/components/theme-switcher.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script>
22
setDarkClass = () => {
3-
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
3+
if (localStorage.theme === 'dark' || ((!('theme' in localStorage) || !['light', 'dark'].includes(localStorage.theme)) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
44
document.documentElement.classList.add('dark')
55
} else {
66
document.documentElement.classList.remove('dark')

0 commit comments

Comments
 (0)