1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-11 18:24:43 +02:00

Desktop: Resolves #2883: Themes switched for more appealing text highlighting (#3192)

* conflicts fixed and changes made to aceEditor.tsx

* theme imported

* theme imported
This commit is contained in:
Ayush Jain 2020-05-18 16:00:29 +05:30 committed by GitHub
parent e0721493e9
commit 341b763088
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 3 deletions

View File

@ -34,8 +34,10 @@ 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/theme/terminal');
// TODO: Could not get below code to work

View File

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

View File

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

View File

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