mao-santaella-rs / NightWolfTheme

🐺 Night Wolf, VsCode Theme by Mao
MIT License
35 stars 9 forks source link

bold variable names #49

Closed alecbentley closed 1 month ago

alecbentley commented 2 months ago

Hello, is there a way to go into settings and make the names of variables to be bold?

mao-santaella-rs commented 1 month ago

Hi @alecbentley, you can do it in your settings.json with:


  "editor.tokenColorCustomizations": {
    "textMateRules": [
      {
        "scope": ["variable", "variable.other.readwrite"],
        "settings": {
          "fontStyle": "bold"
        }
      }
    ]
  }