Skip to content

Commit 7020e05

Browse files
authored
fix: default interface theme is system (#2960)
1 parent 21018bc commit 7020e05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<script>
55
(function () {
6-
const savedTheme = localStorage.getItem('theme') || 'light';
6+
const savedTheme = localStorage.getItem('theme') || 'system';
77
if (
88
savedTheme.includes('dark') ||
99
(savedTheme === 'system' &&

0 commit comments

Comments
 (0)