Skip to content

Instantly share code, notes, and snippets.

@timabell
Last active January 5, 2023 15:09
Embed
What would you like to do?
output all the colour combinations for text/background in powershell https://stackoverflow.com/questions/20541456/list-of-all-colors-available-for-powershell/41954792#41954792
# output all the colour combinations for text/background
# https://stackoverflow.com/questions/20541456/list-of-all-colors-available-for-powershell/41954792#41954792
$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"
}
@timabell
Copy link
Author

You're welcome @pkutaj

Thanks for the tip @B4Art

💟

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment