rose-pine / vscode

Soho vibes for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=mvllow.rose-pine
MIT License
451 stars 15 forks source link

Reduced contrast of line numbers and comments #86

Closed vbaswin closed 1 year ago

vbaswin commented 1 year ago
  1. It was difficult to differentiate comments and punctions - reduced contrast of comments
  2. Line numbers stood out from the rest of the code, difficult to navigate - reduced contrast of line numbers
    Screenshot 2023-05-05 at 12 38 50 PM
Screenshot 2023-05-05 at 12 38 16 PM
mvllow commented 1 year ago

Similar to https://github.com/rose-pine/helix/pull/5#issuecomment-1548032044 but I wanted to add how you could get these changes locally if desired:

{
  "workbench.colorCustomizations": {
    "editorLineNumber.activeForeground": "#bebcd1",
    "editorLineNumber.foreground": "#56536b"
  },
  "editor.tokenColorCustomizations": {
     "textMateRules": [
      {
        "scope": ["comment"],
        "settings": {
          "foreground": "#56536b",
          "fontStyle": "italic"
        }
      }
    ]
  }
}
vbaswin commented 1 year ago

we just need to place these in the settings.json file which can we found in command palette. 🙂