2020-04-07 10:19:53 +02:00
|
|
|
const darkStyle = {
|
2020-05-17 16:34:42 +02:00
|
|
|
appearance: 'dark',
|
|
|
|
|
2020-04-07 10:19:53 +02:00
|
|
|
backgroundColor: '#1D2024',
|
|
|
|
backgroundColorTransparent: 'rgba(255,255,255,0.9)',
|
|
|
|
oddBackgroundColor: '#dddddd',
|
|
|
|
color: '#dddddd',
|
|
|
|
colorError: 'red',
|
|
|
|
colorWarn: '#9A5B00',
|
2020-04-08 12:12:25 +02:00
|
|
|
colorFaded: '#999999', // For less important text
|
2020-04-07 10:19:53 +02:00
|
|
|
colorBright: '#ffffff', // For important text
|
|
|
|
dividerColor: '#555555',
|
|
|
|
selectedColor: '#333333',
|
2020-06-21 01:47:19 +02:00
|
|
|
urlColor: 'rgb(166,166,255)',
|
2020-04-07 10:19:53 +02:00
|
|
|
|
|
|
|
backgroundColor2: '#181A1D',
|
|
|
|
color2: '#ffffff',
|
|
|
|
selectedColor2: '#013F74',
|
|
|
|
colorError2: '#ff6c6c',
|
|
|
|
|
|
|
|
raisedBackgroundColor: '#474747',
|
|
|
|
raisedColor: '#ffffff',
|
|
|
|
|
|
|
|
warningBackgroundColor: '#CC6600',
|
|
|
|
|
2020-06-10 23:08:59 +02:00
|
|
|
codeColor: '#ffffff',
|
|
|
|
tableBackgroundColor: 'rgb(40, 41, 42)',
|
|
|
|
codeBackgroundColor: 'rgb(47, 48, 49)',
|
|
|
|
codeBorderColor: 'rgb(70, 70, 70)',
|
2020-04-07 10:19:53 +02:00
|
|
|
|
2020-06-06 17:00:20 +02:00
|
|
|
aceEditorTheme: 'twilight',
|
|
|
|
codeMirrorTheme: 'material-darker',
|
2020-04-07 10:19:53 +02:00
|
|
|
codeThemeCss: 'atom-one-dark-reasonable.css',
|
|
|
|
|
|
|
|
highlightedColor: '#0066C7',
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = darkStyle;
|