Summary: Use PowerShell and enumeration to access all possible colors that you can use in the console.
Is there a way to see all of the available colors that I can use when using Write-Host?
We sure can! Why, with just one line in PowerShell, you’re all done! Here is an example:
[System.Enum]::getvalues([System.ConsoleColor])
0 comments