monokai-pro / vscode

Issue tracking for Monokai Pro for Visual Studio Code
https://monokai.pro
327 stars 7 forks source link

Low contrast branch label in source control graph after 1.94 Update #418

Open youyoumu opened 1 month ago

youyoumu commented 1 month ago

Release note: https://code.visualstudio.com/updates/v1_94#_source-control

On default vscode theme: image

On Monokai Pro theme: image

DolphinDream commented 1 month ago

Yes.. I experienced this too

Screenshot 2024-10-08 104830

Screenshot 2024-10-08 105136

awgv commented 1 month ago

Didn’t dig too deep into this, but you can override these colors in your settings.json:

  1. Ctrl+Shift+P
  2. Select Preferences: Open User Settings (JSON)
  3. Add the following, although, you might already have the workbench.colorCustomizations key:
"workbench.colorCustomizations": {
  "scmGraph.historyItemHoverLabelForeground": "#000000",
  "scmGraph.historyItemHoverDefaultLabelForeground": "#000000"
},