Make code comments more legible in light theme

Not sure if it’s just me getting old, but I find grey-colored comments hard to read in the light theme, which I generally prefer over the dark theme, where grey comments look good:
comments

Can we make comments green instead like the Light (Visual Studio) theme in VS Code?
comments vscode

It can be a modification to the existing light theme or a new theme (called “Higher Contrast” perhaps). Thanks!

Well I’ve fixed it for myself with the User CSS Chrome extension with the following CSS:

:root {
    --hljs-comment: green 
}

so now comments look green on my sceen:
comments

Still a theme with a higher contrast would be much appreciated.

1 Like