From ca889f84a2d1569ec8a6431d57e2741e5d4970c0 Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 13 Feb 2020 21:42:39 +0100 Subject: [PATCH] Default to dark theme --- src/app/tabs/theme-module.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/tabs/theme-module.js b/src/app/tabs/theme-module.js index 3d5929a98b..ea0ebd618c 100644 --- a/src/app/tabs/theme-module.js +++ b/src/app/tabs/theme-module.js @@ -39,7 +39,7 @@ export class ThemeModule extends Plugin { config: registry.get('config').api } this.themes = themes.reduce((acc, theme) => ({ ...acc, [theme.name]: theme }), {}) - this.active = this._deps.config.get('settings/theme') ? this._deps.config.get('settings/theme') : 'Flatly' + this.active = this._deps.config.get('settings/theme') ? this._deps.config.get('settings/theme') : 'Dark' } /** Return the active theme */