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?
Asked
Active
Viewed 258 times
0

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

Karthick K Raj
- 13
- 1
- 3
-
Duplicate: https://stackoverflow.com/a/50522339/836330 – Mark Jun 03 '21 at 17:43
1 Answers
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"
}

Karthick K Raj
- 13
- 1
- 3