Skip to content
Snippets Groups Projects
Commit 67f67552 authored by Klaus-Dieter Quibeldey-Cirkel's avatar Klaus-Dieter Quibeldey-Cirkel
Browse files

set dark mode as default for all devices

parent a4e897f8
Branches
Tags
No related merge requests found
......@@ -73,8 +73,10 @@ export class FooterComponent implements OnInit {
this.themeService.activate('dark');
this.themeClass = 'dark';
} else {
this.themeService.activate('arsnova');
this.themeClass = 'arsnova';
// this.themeService.activate('arsnova');
// this.themeClass = 'arsnova';
this.themeService.activate('dark');
this.themeClass = 'dark';
}
}
this.styleService.setColor(this.themeService.getThemeByKey(this.themeClass).isDark);
......
......@@ -41,8 +41,8 @@ export const dark_meta = {
'de': 'Dark Mode'
},
'description': {
'en': 'Default for smartphones',
'de': 'Standard für Smartphones'
'en': '',
'de': ''
}
},
'isDark': true,
......
......@@ -41,8 +41,8 @@ export const arsnova_meta = {
'de': 'Light Mode'
},
'description': {
'en': 'Default for laptop computers',
'de': 'Standard für Laptops'
'en': '',
'de': ''
}
},
'isDark': false,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment