Created
June 11, 2017 13:09
-
-
Save KillyMXI/6a66e7e5b34fd87a25f969e6ef28af84 to your computer and use it in GitHub Desktop.
Terminal colors table (PowerShell)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$cs = @("Black","White","Gray","DarkGray","Red","DarkRed","Green","DarkGreen","Blue","DarkBlue","Cyan","DarkCyan","Magenta","DarkMagenta","Yellow","DarkYellow") | |
foreach ($tc in $cs) { | |
foreach ($bc in $cs) { | |
write-host " 123 " -foregroundcolor $tc -backgroundcolor $bc -noNewLine | |
} | |
write-host | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment