nea / MarkdownViewerPlusPlus

A Notepad++ Plugin to view a Markdown file rendered on-the-fly
MIT License
1.17k stars 143 forks source link

Incompatible with Dark Themes / Night Mode? #126

Closed WandersFar closed 4 years ago

WandersFar commented 4 years ago

I recently switched to a dark theme on my system (W10) and while Notepad++ itself adjusted gracefully, this plugin did not.

I’m now stuck with black text on a dark grey background.

Is the black font color hardcoded into Markdown Viewer? Can we have the option to change it to white text on a black background instead? Pretty please?

secretGeek commented 4 years ago

You can modify the css. Click the "?", then choose "Options" then the "Html" node - and in there you can paste in custom css.

I've got an example one I use here: https://til.secretgeek.net/notepad++/dark_theme_notepad++.html

WandersFar commented 4 years ago

Thank you!

I kept my CSS super simple, just one line:

*{color:#ddd;background-color:#000}