3

My current terminal has white prompt and white output like this one https://vscode.one/img/terminal-font-size/terminal-font-size.gif
I Saw this thread about changing terminal color Color theme for VS Code integrated terminal

Foreground changes the color of entire text, but I just want to see color different between the path and output. Similar to this one

enter image description here

The output is white and the path is other color.

kvnts
  • 31
  • 1
  • 3

1 Answers1

1
  1. Click ctrl+shift+P and then search and Open User Setting (JSON)

  2. Paste the JSON settings below to change basic colors

    "workbench.colorCustomizations": {
       "terminal.background": "#2C3E50",
       "terminal.foreground": "#E0E0E0",
     }
    
  3. For a higher level of colour customizations, you can use this Terminal Colors Generator. It will create JSON with all colours you selected and just paste it into your settings JSON.

Simran Singh
  • 2,323
  • 12
  • 21