The highlight.js theme I’ve used is “tomorrow”, which is a light theme. As you can see, the code blocks are dark-themed.
I’ve also tried switching to other Ghost themes with the same code injection - they all seems to work fine and display the correct highlight.js theme (tried Editorial and Massively).
@vaiden I can see the tomorrow.css styles being applied correctly. What I think you want to do is manually set the background colour of the <pre> elements.
Casper has this style (abbreviated):
.post-full-content pre {
background: #0e0f11;
}
You can match this to your theme by adding this to your Code Injection header or modifying your theme files:
<style>
.post-full-content pre {
background: #fff;
}
</style>