I love the default PowerShell color scheme for my terminal window. This is in spite of the fact that I am a light theme person by default (I know, I know, I receive endless grief over it).

Therefore, I customized the VS Code Terminal window’s color scheme to match PowerShell’s. By default, the settings file can be found at $HOME/AppData/Roaming/Code/User/settings.json
.
VS Code Settings
"workbench.colorCustomizations": {
"terminal.background": "#012456",
"terminal.ansiBlack": "#000000",
"terminal.ansiBlue" : "#0000ff",
"terminal.ansiBrightBlack" : "#AAAAAA",
"terminal.ansiBrightBlue" : "#44B4CC",
"terminal.ansiBrightCyan" : "#19D1D8",
"terminal.ansiBrightGreen" : "#81EC0D",
"terminal.ansiBrightPurple" : "#FF00FF",
"terminal.ansiBrightRed" : "#FF0000",
"terminal.ansiBrightWhite" : "#E5E5E5",
"terminal.ansiBrightYellow" : "#FFD93D",
"terminal.ansiCyan" : "#19D1D8",
"terminal.foreground" : "#FFFFFF",
"terminal.ansiGreen" : "#00ff00",
"terminal.ansiPurple" : "#9933CC",
"terminal.ansiRed" : "#FF6600",
"terminal.ansiWhite" : "#F5F5F5",
"terminal.ansiYellow" : "#FFD93D"
},
See my other post on how I configured the command line.