mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
23 lines
568 B
TypeScript
23 lines
568 B
TypeScript
import { Theme } from './type';
|
|
import theme_dark from './dark';
|
|
|
|
const theme: Theme = {
|
|
...theme_dark,
|
|
backgroundColor: '#000000',
|
|
color: '#dddddd',
|
|
colorFaded: '#777777',
|
|
dividerColor: '#3D444E',
|
|
selectedColor: '#333333',
|
|
urlColor: 'rgb(166,166,255)',
|
|
codeColor: '#ffffff',
|
|
raisedBackgroundColor: '#0F2051',
|
|
raisedColor: '#788BC3',
|
|
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)',
|
|
};
|
|
|
|
export default theme;
|