robertrossmann / vscode-remedy

A VS Code theme with orange accents with roots in Base16 - Eighties colour theme

Home Page:https://marketplace.visualstudio.com/items?itemName=robertrossmann.remedy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How can I customize the color?

CatsMiaow opened this issue · comments

commented

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?)?

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"
    }
  }
}