0

I am using one dark pro theme as my default VS Code color theme. In that, I am getting source control background as some what light green and dark red for existing and past changes. I would like to change the default color used in the settings.json. How can I do that?

enter image description here

John Conde
  • 217,595
  • 99
  • 455
  • 496

1 Answers1

0

We can achieve the background change for source control by modifying the diffEditor property in workbench configurations of settings.json

"workbench.colorCustomizations": {
    "diffEditor.insertedTextBackground": "#045e13c7",
    "diffEditor.removedTextBackground": "#750a2ac0"
  }