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!
40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
// This is the default theme in Joplin
|
|
const lightStyle = {
|
|
backgroundColor: '#ffffff',
|
|
backgroundColorTransparent: 'rgba(255,255,255,0.9)',
|
|
oddBackgroundColor: '#dddddd',
|
|
color: '#222222', // For regular text
|
|
colorError: 'red',
|
|
colorWarn: '#9A5B00',
|
|
colorFaded: '#777777', // For less important text
|
|
colorBright: '#000000', // For important text
|
|
dividerColor: '#dddddd',
|
|
selectedColor: '#e5e5e5',
|
|
urlColor: '#155BDA',
|
|
|
|
backgroundColor2: '#162B3D',
|
|
depthColor: 'rgb(100, 182, 253, OPACITY)',
|
|
color2: '#f5f5f5',
|
|
selectedColor2: '#0269C2',
|
|
colorError2: '#ff6c6c',
|
|
|
|
raisedBackgroundColor: '#e5e5e5',
|
|
raisedColor: '#222222',
|
|
|
|
warningBackgroundColor: '#FFD08D',
|
|
|
|
htmlColor: '#222222',
|
|
htmlBackgroundColor: 'white',
|
|
htmlDividerColor: 'rgb(230,230,230)',
|
|
htmlLinkColor: 'rgb(80,130,190)',
|
|
htmlTableBackgroundColor: 'rgb(247, 247, 247)',
|
|
htmlCodeBackgroundColor: 'rgb(243, 243, 243)',
|
|
htmlCodeBorderColor: 'rgb(220, 220, 220)',
|
|
htmlCodeColor: 'rgb(0,0,0)',
|
|
|
|
editorTheme: 'chrome',
|
|
codeThemeCss: 'atom-one-light.css',
|
|
};
|
|
|
|
module.exports = lightStyle;
|