visual-studio-code

Text color in tabs in Visual Studio Code


In the picture you see the tabs in the Monokai theme. Where is the color for the brown text defined (Database.coffee)? It doesn't seem to be defined in the Monokai theme but somewhere else.

I would want to make all the text as white, but setting "tab.activeForeground": "#ffffff" doesn't have any effect for those brown ones.

enter image description here


Solution

  • This is a color picked to identified modified git resource.

    Overwrite it by:

    {
      "workbench.colorCustomizations": {
        "gitDecoration.modifiedResourceForeground": "#FF8A80"
      }
    }
    
    

    And to disable the git decorations overall as the comment suggested

    {
      "git.decorations.enabled":false
    }