We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bf78c0 commit 4045895Copy full SHA for 4045895
src/app/services/ui/ui.interaction.service.ts
@@ -239,7 +239,7 @@ export class UiInteractionService implements OnDestroy {
239
this.loadUserSettingFromLocalStorage();
240
if (this.activeTheme === null) {
241
// detect at initialization
242
- if (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches) {
+ if (false && window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches) {
243
this.setActiveTheme(new ThemeFachDark(), false);
244
} else {
245
this.setActiveTheme(new ThemeFach(), false);
0 commit comments