robertrossmann / vscode-remedy

A VS Code theme with orange accents with roots in Base16 - Eighties colour theme
https://marketplace.visualstudio.com/items?itemName=robertrossmann.remedy
BSD 3-Clause "New" or "Revised" License
62 stars 4 forks source link

How can I customize the color? #13

Closed CatsMiaow closed 4 years ago

CatsMiaow commented 4 years ago

In my eyes, the color of the const and readonly variables is gray series, so it's not clear, which reduces readability. image

How can I change the color of the const variable and readonly variable to previous color(white?)?

robertrossmann commented 4 years ago

Hi @CatsMiaow, thanks for the feedback! I am still considering this particular aspect. Not sure, either, if I like it or what. I would like to somehow adjust the colours of readonly variables and properties, I am just not sure if this is the right approach. If you have any suggestions in this area please let me know!

To have the readonly variables and properties regular white again, you may put the following into your VS Code's settings:


"editor.semanticTokenColorCustomizations": {
  "[Remedy - Dark (Tilted)]": {
    "rules": {
      "variable.readonly": "#F9E7C4",
      "property.readonly": "#F9E7C4"
    }
  }
}