1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-11 18:24:43 +02:00
joplin/ElectronClient/gui/style/theme/solarizedDark.js
Ayush Jain 488cb99d4c
Desktop: Resolves #2894: Set editor color scheme according to theme (#3188)
* conflicts fixed and changes made to aceEditor.tsx

* theme imported
2020-05-10 15:13:55 +01:00

39 lines
1016 B
JavaScript

const solarizedDarkStyle = {
backgroundColor: '#002b36',
backgroundColorTransparent: 'rgba(0, 43, 54, 0.9)',
oddBackgroundColor: '#073642',
color: '#93a1a1', // For regular text
colorError: '#dc322f',
colorWarn: '#cb4b16',
colorFaded: '#657b83', // For less important text;
colorBright: '#eee8d5', // For important text;
dividerColor: '#586e75',
selectedColor: '#073642',
urlColor: '#268bd2',
backgroundColor2: '#073642',
depthColor: 'rgb(200, 200, 200, OPACITY)',
color2: '#eee8d5',
selectedColor2: '#6c71c4',
colorError2: '#cb4b16',
raisedBackgroundColor: '#073642',
raisedColor: '#839496',
warningBackgroundColor: '#b5890055',
htmlColor: '#93a1a1',
htmlBackgroundColor: '#002b36',
htmlDividerColor: '#073642',
htmlLinkColor: '#268bd2',
htmlTableBackgroundColor: '#002b36',
htmlCodeBackgroundColor: '#002b36',
htmlCodeBorderColor: '#696969',
htmlCodeColor: '#fdf6e3',
editorTheme: 'twilight',
codeThemeCss: 'atom-one-dark-reasonable.css',
};
module.exports = solarizedDarkStyle;