Pretty grid
$colors = [enum]::GetValues([System.ConsoleColor])
Foreach ($bgcolor in $colors){
Foreach ($fgcolor in $colors) { Write-Host "$fgcolor|" -ForegroundColor $fgcolor -BackgroundColor $bgcolor -NoNewLine }
Write-Host " on $bgcolor"
}
Updated colours in newer powershell:
https://gist.github.com/timabell/cc9ca76964b59b2a54e91bda3665499e
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…