mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
40 lines
1008 B
JavaScript
40 lines
1008 B
JavaScript
// This is the default theme in Joplin
|
|
const lightStyle = {
|
|
appearance: 'light',
|
|
|
|
backgroundColor: '#ffffff',
|
|
backgroundColorTransparent: 'rgba(255,255,255,0.9)',
|
|
oddBackgroundColor: '#dddddd',
|
|
color: '#555555', // 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',
|
|
color2: '#f5f5f5',
|
|
selectedColor2: '#0269C2',
|
|
colorError2: '#ff6c6c',
|
|
|
|
raisedBackgroundColor: '#e5e5e5',
|
|
raisedColor: '#222222',
|
|
searchMarkerBackgroundColor: '#F7D26E',
|
|
searchMarkerColor: 'black',
|
|
|
|
warningBackgroundColor: '#FFD08D',
|
|
|
|
tableBackgroundColor: 'rgb(247, 247, 247)',
|
|
codeBackgroundColor: 'rgb(243, 243, 243)',
|
|
codeBorderColor: 'rgb(220, 220, 220)',
|
|
codeColor: 'rgb(0,0,0)',
|
|
|
|
aceEditorTheme: 'chrome',
|
|
codeMirrorTheme: 'default',
|
|
codeThemeCss: 'atom-one-light.css',
|
|
};
|
|
|
|
module.exports = lightStyle;
|