Change highlight.js styles?

I have customized the colors of my Discourse instance to use a dark background color, however syntax highlighting does not look good anymore.

What is the easiest way to tell highlight.js to use a different style?

Admin, customize, css

Oh right, thanks Jeff.

Unfortunately it looks like it isn’t working correctly.

I copy/pasted the CSS from the Agate theme to a new section in Admin / Customize / CSS:

However I get the following results:

(Link to the page: Some thoughts on beta 1.4 - appleseed Users Forum)

Notice that the .hljs-string color is #f99 which does not match the declared style of this class in the Agate theme:

.hljs-string,
.hljs-bullet {
  color: #a2fca2;
}

Not sure what I’m doing wrong. Any clue?

Looks like I would need to add !important to each CSS property…

Is anyone aware of a better solution?

Edit: it doesn’t look like the !important solution would even work…

Nope, it’s because the default has a higher specificity - .hljs-tag .hljs-string . You need to replicate the theme’s rule with that selector.

Thanks @riking, I hadn’t seen this.

Unfortunately that means it’s basically impossible to try highlight.js themes (from their demo page) to find one that fits the color palette of my Discourse instance without inspecting and tweaking them, one rule at a time…

So I guess my original question remains: what’s the (second) easiest way to try an highlight.js theme with Discourse?

Só estou dando um toque, caso alguém mais tenha encontrado uma boa maneira de importar estilos mais bonitos e coloridos para realce de sintaxe de código? Algo que se pareça mais com a visualização de um editor de código moderno.

CSS personalizado seria uma solução aceitável. Fiquei curioso se alguém já colocou CSS adequado em um CDN para importação ou se criou um componente de tema.

Concordo que é bastante complicado sobrescrever o que já temos. Os ships do Highlight com uma grande variedade de temas estão em:

Um tema personalizado certamente pode dar uma aparĂŞncia Ăşnica ao site:

@Johani, talvez devêssemos criar um howto explicando como pegar o CSS do repositório oficial, transformá-lo e fazê-lo funcionar com nosso CSS?

Criei um componente de tema que permite aos administradores selecionar um tema do hljs em um menu suspenso. Mais detalhes aqui: