andrewberty / Noir-vscode-theme

8 stars 2 forks source link

Increase the color contrast of comment text. #3

Closed content-aruna closed 5 months ago

content-aruna commented 5 months ago

Hello developer, I am fascinated with the Nor Tokyo Night theme, but there is a small issue with the comment text's low color contrast. Could you fix this soon?

andrewberty commented 5 months ago

Hello @me-aruna , well comments should be more invisible than your actual code. but if you prefer more bright color for comments you can easily tweak that in your vscode settings.json by adding this

"editor.tokenColorCustomizations": {
    "[Noir Tokyo Night]": {
      "textMateRules": [
        {
          "scope": ["comment"],
          "settings": {
            "foreground": "#FF0000"
          }
        }
      ]
    }
  }
content-aruna commented 5 months ago

Hello @me-aruna , well comments should be more invisible than your actual code. but if you prefer more bright color for comments you can easily tweak that in your vscode settings.json by adding this

"editor.tokenColorCustomizations": {
    "[Noir Tokyo Night]": {
      "textMateRules": [
        {
          "scope": ["comment"],
          "settings": {
            "foreground": "#FF0000"
          }
        }
      ]
    }
  }

Thanks for your response @andrew-george , Your code was very helpful to me.

andrewberty commented 5 months ago

Thanks and happy coding!

I'm gonna close this issue for now, but if you found any bugs or had any ideas, don't hesitate to open another issue.