Change PowerShell PSReadLine MenuComplete function's colors

816 Views Asked by At

I am currently playing with the PSReadLine module options in PowerShell. In particular I am setting up a custom color theme. I have been able to set most of the colors I require using the following syntax as an example: Set-PSReadLineOption -TokenKind Variable -ForegroundColor DarkYellow

However when I use the MenuComplete function of the PSReadLine module by pressing Ctrl+Spacebar the suggestions are highlighted in DarkGreen and I cannot seem to find a way to change these colors.

1

There are 1 best solutions below

3
On

I don't see this option in the old color settings, but as of 6.1.0, you can change the color of Selection like this:

$colors = @{
   "Selection" = "$([char]0x1b)[38;2;0;0;0;48;2;178;255;102m"
}

Set-PSReadLineOption -Colors $colors

enter image description here