How to change diff color Visual Studio Code
Updating background color Since you need to update background only. The only issue in your config earlier was there was no alpha channel specified. You can update it like below “workbench.colorCustomizations”: { “diffEditor.removedTextBackground”: “#FF000055”, “diffEditor.insertedTextBackground”: “#ffff0055” } Where 55 is the alpha channel value. The updated values will have below effect Why it’s not possible … Read more