1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Revert "Desktop: Resolves #2894: Set editor color scheme according to theme (#3188)"

This reverts commit 488cb99d4c.

Reason: The app doesn't even start

https://github.com/laurent22/joplin/pull/3188#issuecomment-626334459
This commit is contained in:
Laurent Cozic 2020-05-10 16:33:28 +01:00
parent 9c4939e051
commit 6446a3c4de
4 changed files with 3 additions and 5 deletions

View File

@ -37,10 +37,8 @@ require('brace/theme/solarized_dark');
require('brace/theme/twilight');
require('brace/theme/dracula');
require('brace/theme/chaos');
require('brace/theme/tomorrow');
require('brace/keybinding/vim');
require('brace/keybinding/emacs');
require('brace/keybinding/terminal');
// TODO: Could not get below code to work

View File

@ -77,7 +77,7 @@ const nordStyle = {
htmlCodeBorderColor: nord[2],
htmlCodeColor: nord[13],
editorTheme: 'terminal',
editorTheme: 'chaos',
codeThemeCss: 'atom-one-dark-reasonable.css',
};

View File

@ -31,7 +31,7 @@ const solarizedDarkStyle = {
htmlCodeBorderColor: '#696969',
htmlCodeColor: '#fdf6e3',
editorTheme: 'twilight',
editorTheme: 'solarized_dark',
codeThemeCss: 'atom-one-dark-reasonable.css',
};

View File

@ -31,7 +31,7 @@ const solarizedLightStyle = {
htmlCodeBorderColor: '#eee8d5',
htmlCodeColor: '#002b36',
editorTheme: 'tomorrow',
editorTheme: 'solarized_light',
codeThemeCss: 'atom-one-light.css',
};