VSCode - How to disable highlight color for open files on file explorer?

Viewed 3651

Since Version 1.26.1 (1.26.1), The File Explorer is highlighting the open files and the directories with a green color. I find this really distracting since it's overwriting the colors from git lense (yellow for changes/new files) and eslint (red for errors).

Is there a way to disable that?

See example: enter image description here

1 Answers

In Preferences:

explorer.decorations.colors

Controls whether file decorations should use colors.

"explorer.decorations.colors": true,//shows colors

"explorer.decorations.colors": false, //displays no colors
Related