Skip to content

Commit 9ab990f

Browse files
authored
Merge pull request #1921 from vs4vijay/theme-auto-detection
automatically theme mode based on user preference
2 parents fb8e1be + feaf3dd commit 9ab990f

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

src/web/App.mjs

100755100644
+3
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ class App {
6060

6161
this.initialiseSplitter();
6262
this.loadLocalStorage();
63+
this.manager.options.applyPreferredColorScheme();
6364
this.populateOperationsList();
6465
this.manager.setup();
6566
this.manager.output.saveBombe();
@@ -536,6 +537,8 @@ class App {
536537
// Read in theme from URI params
537538
if (this.uriParams.theme) {
538539
this.manager.options.changeTheme(Utils.escapeHtml(this.uriParams.theme));
540+
} else {
541+
this.manager.options.applyPreferredColorScheme();
539542
}
540543

541544
window.dispatchEvent(this.manager.statechange);

src/web/waiters/OptionsWaiter.mjs

100755100644
+8
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,14 @@ class OptionsWaiter {
163163
themeSelect.selectedIndex = themeSelect.querySelector(`option[value="${theme}"`).index;
164164
}
165165

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+
}
166174

167175
/**
168176
* Changes the console logging level.

0 commit comments

Comments
 (0)