Search code examples
visual-studio-codebackground-colorstatusbar

Visual Studio Code status bar text color


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


Solution

  • 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).