2

How do I change the font sizes of the text inside the ui items and text fields in Vscode?

See the image for areas of interest. I want to resize all the text you see in the pic.

vscode

Gama11
  • 31,714
  • 9
  • 78
  • 100
yarun can
  • 2,871
  • 5
  • 25
  • 27
  • 1
    Use "window.zoomLevel": 1, (some number there) together with "editor.fontSize": 14, to get to a comfortable combination of editor font size and ui element fontsize. – Mark Dec 21 '18 at 04:11
  • 1
    Possible duplicate of [how to change Visual Studio Code environment font size](https://stackoverflow.com/questions/33701933/how-to-change-visual-studio-code-environment-font-size) – Mark Dec 21 '18 at 04:12

2 Answers2

5

Well the Font Size field shown in your screen shot will only change the font within the editor, not the text for other elements of VS Code. You can try adjusting the zoom setting:

  1. CTRL + SHIFT + P
  2. Type 'zoom'
  3. Select "View: Zoom In"

enter image description here

This will zoom in the entire IDE, not just the editor. This will make the font size bigger of the IDE since it's being zoomed in. I don't believe there's any setting to specifically change the font size of the text in non editor elements of the IDE so I think this is the best "work around" to solve your request. Try it out and see if it works for you.

Birdman
  • 1,404
  • 5
  • 22
  • 49
0

Click on Gear icon on bottom left and choose 'Settings' OR "Ctrl+," Then type "Font" in the search bar of settings page. Font Size option will appear

Vidhya
  • 79
  • 2
  • 6