1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/ReactNativeClient/lib/themes/oledDark.js
Laurent Cozic b7f5f848f2 All: Refactored themes to allow using the same ones in both desktop and mobile version
Will also allow using them when exporting HTML or PDF from CLI.
2020-06-10 22:08:59 +01:00

21 lines
582 B
JavaScript

const darkBase = require('./dark');
module.exports = Object.assign({}, darkBase, {
appearance: 'dark',
backgroundColor: '#000000',
color: '#dddddd',
colorFaded: '#777777',
dividerColor: '#3D444E',
selectedColor: '#333333',
urlColor: 'rgb(166,166,255)',
codeColor: '#ffffff',
raisedBackgroundColor: '#0F2051',
raisedColor: '#788BC3',
raisedHighlightedColor: '#ffffff',
tableBackgroundColor: 'rgb(0, 0, 0)',
codeBackgroundColor: 'rgb(47, 48, 49)',
codeBorderColor: 'rgb(70, 70, 70)',
codeThemeCss: 'atom-one-dark-reasonable.css',
colorBright: 'rgb(220,220,220)',
});