I add this to a markdown file:
```
@all-contributors add @YOURUSERNAME for YOURCONTRIBUTIONTYPE
```
and Hugo is rendering it in the hugo-default dark theme (even with me having defined styles in css for highlighting)
I add this:
```plaintext
@all-contributors add @YOURUSERNAME for YOURCONTRIBUTIONTYPE
```
and it’s showing up in the color scheme I set.
Also… it reacts to my custom css additions that do some magic with the data properties.
This is either a bug or something expected. If my code block DOES NOT have a language type added it will default to the standard theme and does NOT add any of the options I set (like noClassesin this case).
My config in config/*/markup.toml is this:
[highlight]
anchorLineNos = true
codeFences = true
noClasses = false
[goldmark.renderer]
unsafe = true # meh, no like, but required for contributors list
and I added the styles for “my” theme to the stylesheet. “MY” theme is not a dark them (gruvbox-light I think). The theme is exported into a stylesheet via hugo gen chromastyles --style=gruvbox-light > assets/ananke/css/highlighting.css.
Is this A) a bug or B) some issue in my configuration? (repo is here)
We are on the latest Hugo version.

