File tree 2 files changed +11
-0
lines changed
2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ class App {
60
60
61
61
this . initialiseSplitter ( ) ;
62
62
this . loadLocalStorage ( ) ;
63
+ this . manager . options . applyPreferredColorScheme ( ) ;
63
64
this . populateOperationsList ( ) ;
64
65
this . manager . setup ( ) ;
65
66
this . manager . output . saveBombe ( ) ;
@@ -536,6 +537,8 @@ class App {
536
537
// Read in theme from URI params
537
538
if ( this . uriParams . theme ) {
538
539
this . manager . options . changeTheme ( Utils . escapeHtml ( this . uriParams . theme ) ) ;
540
+ } else {
541
+ this . manager . options . applyPreferredColorScheme ( ) ;
539
542
}
540
543
541
544
window . dispatchEvent ( this . manager . statechange ) ;
Original file line number Diff line number Diff line change @@ -163,6 +163,14 @@ class OptionsWaiter {
163
163
themeSelect . selectedIndex = themeSelect . querySelector ( `option[value="${ theme } "` ) . index ;
164
164
}
165
165
166
+ /**
167
+ * Applies the user's preferred color scheme using the `prefers-color-scheme` media query.
168
+ */
169
+ applyPreferredColorScheme ( ) {
170
+ const prefersDarkScheme = window . matchMedia ( "(prefers-color-scheme: dark)" ) . matches ;
171
+ const theme = prefersDarkScheme ? "dark" : "classic" ;
172
+ this . changeTheme ( theme ) ;
173
+ }
166
174
167
175
/**
168
176
* Changes the console logging level.
You can’t perform that action at this time.
0 commit comments