1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

Joplin desktop Dark Mode (#921)

* Added support for the dark mode on desktop

* Add dark highlighting to the code tags

* Update app/theme.js to be more clear and more easily support additional themes
Update more files to conform to theming
This commit is contained in:
Caleb John
2018-11-07 15:37:13 -07:00
committed by Laurent Cozic
parent 19f5a144e5
commit ee106105d8
18 changed files with 286 additions and 119 deletions

View File

@ -599,8 +599,8 @@ class MdToHtml {
max-width: 100%;
}
.inline-code {
border: 1px solid #CBCBCB;
background-color: #eff0f1;
border: 1px solid ` + style.htmlCodeBorderColor + `;
background-color: ` + style.htmlCodeColor + `;
padding-right: .2em;
padding-left: .2em;
}