Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 962
DanielRavina Avatar asked Sep 07 '18 17:09

DanielRavina


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
like image 160
Any Moose Avatar answered Oct 12 '22 11:10

Any Moose