DanielRavina
DanielRavina

Reputation: 115

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

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

Upvotes: 9

Views: 5554

Answers (1)

Any Moose
Any Moose

Reputation: 648

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

Upvotes: 13

Related Questions