Scriptim
Scriptim

Reputation: 1832

Change Markdown preview theme in Atom

Is there a way to change the theme of the Markdown preview in Atom by using cascading stylesheet (CSS) files? I'm using the markdown-preview-plus package.

Upvotes: 3

Views: 3821

Answers (1)

nwinkler
nwinkler

Reputation: 54507

It looks like this can be done using CSS, as you indicated. The markdown-preview package's documentation has an example:

.markdown-preview.markdown-preview {
  background-color: #444;
}

Take a look at the less source files in the markdown-preview package for some further information on the available style classes that you can override: https://github.com/atom/markdown-preview/blob/master/styles/markdown-preview-default.less

Upvotes: 4

Related Questions