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

Asked

Viewed 1,101 times

3

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

inserir a descrição da imagem aqui

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

2 answers

2


You don’t do this through 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 the whole vscode (including the sidebar) and then to compensate you can set "editor.fontSize" for your taste.

2

A "gambiarra" would be to give a few Ctrl++, this will make all sources much bigger.

inserir a descrição da imagem aqui

Then you see in Settings and change the font size only of the text editor to a size you find interesting.

inserir a descrição da imagem aqui

Exaggerated example

inserir a descrição da imagem aqui

Browser other questions tagged

You are not signed in. Login or sign up in order to post.