mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
62bddd7c69
* Working on an aritim-dark theme, very WIP still * Update aritim.js * Added new theme "Aritim-Dark" * removing aritim-dark "brace" theme for now * Updating style with some changes * Reset branch back to the original upstream state, to create a different pull-request for moving all themes outside * Reset branch back to the original upstream state * Moved all themes out into their own .js theme files * Updating master to use the seperated themes stuff * Moved themes into their own const * Removed switch case for themes and simplified it. Thanks Laurent for the help!
39 lines
1002 B
JavaScript
39 lines
1002 B
JavaScript
const draculaStyle = {
|
|
backgroundColor: '#282a36',
|
|
backgroundColorTransparent: 'rgba(40, 42, 54, 0.9)',
|
|
oddBackgroundColor: '#282a36',
|
|
color: '#f8f8f2', // For regular text
|
|
colorError: '#ff5555',
|
|
colorWarn: '#ffb86c',
|
|
colorFaded: '#6272a4', // For less important text;
|
|
colorBright: '#50fa7b', // For important text;
|
|
dividerColor: '#bd93f9',
|
|
selectedColor: '#44475a',
|
|
urlColor: '#8be9fd',
|
|
|
|
backgroundColor2: '#21222C',
|
|
depthColor: 'rgb(200, 200, 200, OPACITY)',
|
|
color2: '#bd93f9',
|
|
selectedColor2: '#44475a',
|
|
colorError2: '#ff5555',
|
|
|
|
raisedBackgroundColor: '#44475a',
|
|
raisedColor: '#bd93f9',
|
|
|
|
warningBackgroundColor: '#ffb86c',
|
|
|
|
htmlColor: '#f8f8f2',
|
|
htmlBackgroundColor: '#282a36',
|
|
htmlDividerColor: '#f8f8f2',
|
|
htmlLinkColor: '#8be9fd',
|
|
htmlTableBackgroundColor: '#6272a4',
|
|
htmlCodeBackgroundColor: '#44475a',
|
|
htmlCodeBorderColor: '#f8f8f2',
|
|
htmlCodeColor: '#50fa7b',
|
|
|
|
editorTheme: 'dracula',
|
|
codeThemeCss: 'atom-one-dark-reasonable.css',
|
|
};
|
|
|
|
module.exports = draculaStyle;
|