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.
            Asked
            
        
        
            Active
            
        
            Viewed 910 times
        
    1 Answers
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
- 
                    Thanks. "statusBar.foreground": "#000000" and "activityBar.foreground": "#000000" works for me. – illuminato Feb 06 '21 at 00:23

