0

I want to change text color on status bar in Visual Studio Code. I've found how to change color of status bar Visual Studio Code status bar color but I need similar solution for text.

enter image description here

illuminato
  • 1,057
  • 1
  • 11
  • 33

1 Answers1

1

The two values you need to change for the status bar are

{
  "statusBar.background": "#114F79",
  "statusBar.foreground": "#9DE2FD"
}

And set those to your preference (in settings.json).

Guillermo Brachetta
  • 3,857
  • 3
  • 18
  • 36