Color theme for VS Code integrated terminal

John Jai picture John Jai · Feb 17, 2017 · Viewed 117.7k times · Source

Can we change color settings of VS Code Integrated Terminal? Mine looks dull with just white.

enter image description here

Answer

Zrag123 picture Zrag123 · Sep 12, 2017

You can actually modify your user settings and edit each colour individually by adding the following to the user settings.

  1. Open user settings (ctrl + ,)
  2. Search for workbench and select Edit in settings.json under Color Customizations
"workbench.colorCustomizations" : {
    "terminal.foreground" : "#00FD61",
    "terminal.background" : "#383737"
}

For more on what colors you can edit you can find out here.