pucelle / vscode-css-navigation

Allowing Go to definition from HTML to CSS, or Find References from CSS to HTML.
https://marketplace.visualstudio.com/items?itemName=pucelle.vscode-css-navigation
MIT License
66 stars 7 forks source link

Highlighted CSS Rule Unreadable With Monokai Dimmed Theme #16

Closed dfenton closed 5 years ago

dfenton commented 5 years ago

I use the Monokai Dimmed theme. With this theme, the highlighted CSS rule is practically unreadable due to the similarity between the orange background and font color.

image

I have modified Monokai Dimmed file to change all occurrences of this orange color to a color less bright but the CSS is still highlighted with the orange background.

I would appreciate if you could explain how to change/remove this highlighting. Aside from that, I love your extension. It is so handy and speeds up my coding.

Thanks

pucelle commented 5 years ago

Hi, dfenton, I just checked the configuration of VSCode, and found this option should be what you are looking for.

If your theme plugin doesn't provide an option to modify it, you can also change your settings by adding:

"workbench.colorCustomizations": {
    "peekViewEditor.matchHighlightBackground": "#Your preferred highlight color"
}