diff --git a/src/app/tabs/settings-tab.js b/src/app/tabs/settings-tab.js index 202bf61bc7..98f53b0ca6 100644 --- a/src/app/tabs/settings-tab.js +++ b/src/app/tabs/settings-tab.js @@ -43,6 +43,10 @@ var css = csjs` .heading { margin-bottom: 0; } + .explaination { + margin-top: 3px; + margin-bottom: 3px; + } input { margin-right: 5px; cursor: pointer; @@ -56,6 +60,9 @@ var css = csjs` .pluginLoad { vertical-align: top; } + i.warnIt { + color: ${styles.appProperties.warningText_Color}; + } } ` module.exports = SettingsTab @@ -89,6 +96,7 @@ function SettingsTab (container, appAPI, appEvents, opts) { Enable Optimization

Themes

+

If you select a new theme, the page will reload

@@ -99,7 +107,7 @@ function SettingsTab (container, appAPI, appEvents, opts) {

-
Plugin ( Do not use this alpha feature if you are not sure what you are doing!) +
Plugin ( Do not use this alpha feature if you are not sure what you are doing! )
diff --git a/src/app/theme/theme-chooser.js b/src/app/theme/theme-chooser.js index 3219eda6cd..8888431145 100644 --- a/src/app/theme/theme-chooser.js +++ b/src/app/theme/theme-chooser.js @@ -6,10 +6,10 @@ module.exports = { chooser: function () { var themeStorage = new Storage('style:') - if (themeStorage.get('theme') === 'light') { - return styleGuideLight() - } else { + if (themeStorage.get('theme') === 'dark') { return styleGuideDark() + } else { + return styleGuideLight() } },