You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like the color mappings in this repo between powershell's colors and ansi color codes do not match those used by powershell's virtual terminal system.
For example, when Write-Host -ForegroundColor Magenta "test" is executed, powershell's virtual terminal emits ESC[35;1mtest (also known as brmagenta or High Intensity Magenta). The mapping in the readme file and code lists the mapping as: magenta -> magenta.
Below are the correct mappings in full:
termcol
Powershell
black
Black
red
DarkRed
green
DarkGreen
yellow
DarkYellow
blue
DarkBlue
magenta
DarkMagenta
cyan
DarkCyan
white
DarkWhite
brblack
DarkGray
brred
Red
brgreen
Green
bryellow
Yellow
brblue
Blue
brmagenta
Magenta
brcyan
Cyan
brwhite
White
The text was updated successfully, but these errors were encountered:
It looks like the color mappings in this repo between powershell's colors and ansi color codes do not match those used by powershell's virtual terminal system.
For example, when
Write-Host -ForegroundColor Magenta "test"
is executed, powershell's virtual terminal emitsESC[35;1mtest
(also known as brmagenta or High Intensity Magenta). The mapping in the readme file and code lists the mapping as: magenta -> magenta.Below are the correct mappings in full:
The text was updated successfully, but these errors were encountered: