How to change the size, color and add bold in folders and their names in the VS code

3

Next, I use Vs code for development, even installing different themes, I still can not find a plugin that changes the size and color of the sidebar folders.

Notice that the folders on the left side are very small in size and their names are very blurred, where can I change these settings?

    
asked by anonymous 11.12.2018 / 18:49

2 answers

2

You do not do this by theme, but by applying your custom settings.

As described in documentation

As an example, this setting will change the color of folder names.

"workbench.colorCustomizations": {
  "sideBar.foreground": "#fff"
}

Particularly I find it strange, but you can for example use "window.zoomLevel": -0.5 will zoom in on vscode (including sidebar) and then to compensate you can set "editor.fontSize" to your liking.     

11.12.2018 / 18:58
2

A "gambiarra" would be giving Ctrl++ , this will make all the sources become much larger.

ThenyouseeinSettingsandchangethefontsizeofthetexteditoronlytoasizethatyoufindinteresting.

Exaggeratedexample

    
11.12.2018 / 19:02