Wednesday 10 October 2018

How to set custom text and background color for the Terminal window in VSCode

Apply these custom settings in your User or Workspace settings (read here about what is the difference between them in order to decide):

{
    "workbench.colorCustomizations": {
        "terminal.foreground" : "#00FD61",
        "terminal.background" : "#383737"
    }
}

No comments: