Use case or problem
My favourite theme so far is Obuntu, but comments (inside backticks, like this) are not as obvious as I’d like when they go across multiple lines, in dark mode.
How can I make them really obvious, like (say) making them a font or different colour – as in the ITS Theme?
Can anyone suggest a CSS snippet or other solution?
Thanks!
I know very basic CSS and I’ve used snippets. But one problem I always have is figuring out the variable name for the thing I want to change.
I guess this is the relevant part of ITS Theme.css:
/*Comments*/
.cm-comment,
.cm-comment + .cm-url,
.cm-formatting-link-string {
font-family: var(--font-monospace);
}
But it looks like it’s getting the font description from elsewhere and I get a bit lost in the code.