I know that I can change the colors of the PowerShell console by setting something like:
$Host.UI.RawUI.BackgroundColor = "White" Clear-Host
However, in the Powershell console, you can go to the Color tab in Properties and manually change the RGB values โโof the 16 ANSI standard colors. Is it possible to set either hexadecimal or RGB values โโof standard colors from a script profile? For example, the setup I would like to have:
$Host.UI.RawUI.BackgroundColor = "#242424" # Gray Clear-Host
colors powershell
petobens
source share