Issue: === Various UI elements are incorrectly styled Reason --- **`theme.js`** incorrectly references `config.getTheme` instead of [`config.getEditorTheme`](https://github.com/zedapp/zed/blob/661ba3ac2eda0757fea1a4d914195cd0043a2371/app/js/config.js#L115) Solution --- change [/app/js/theme.js line 85]( https://github.com/zedapp/zed/blob/661ba3ac2eda0757fea1a4d914195cd0043a2371/app/js/theme.js#L85) - currently --- ```js var theme = config.getTheme(config.getPreference("editorTheme")); ``` **change to** ```js var theme = config.getEditorTheme(config.getPreference("editorTheme")); ``` change [/app/js/theme.js line 113](https://github.com/zedapp/zed/blob/661ba3ac2eda0757fea1a4d914195cd0043a2371/app/js/theme.js#L113) - currently --- ```js var theme = config.getTheme(config.getPreference("windowTheme")); ``` **change to** ```js var theme = config.getEditorTheme(config.getPreference("windowTheme")); ```
Issue:
Various UI elements are incorrectly styled
Reason
theme.jsincorrectly referencesconfig.getThemeinstead ofconfig.getEditorThemeSolution
change /app/js/theme.js line 85 - currently
change to
change /app/js/theme.js line 113 - currently
change to