Changing code block syntax highlighting color

Hi, I’m still a bit new to Dynsalist but I’m loving it so far, but I have a small issue with the code syntax highlighter, specifically the color it chose for comments.
Screenshot (748)

I want to know if it’s possible to change the colors of the comments to something that stands out a bit more, thanks in advance.

You need Pro to add custom CSS but it’s this bit:

.is-dark-mode .hljs-comment, .is-dark-mode .hljs-quote { color: rgb(92, 99, 112); font-style: italic; }

I grabbed it from https://dynalist.io/assets/libs/highlightjs/highlightjs.min.css

Oh alright then, thanks for answering.