Change the colors of the PowerShell PSReadLine MenuComplete function

I am currently playing around with module parameters PSReadLine

in PowerShell. Specifically, I am setting up a custom color theme. I was able to set most of the colors I needed using the following syntax as an example: Set-PSReadLineOption -TokenKind Variable -ForegroundColor DarkYellow

However, when I use the MenuComplete

module function by PSReadLine

clicking Ctrl+Spacebar

, the suggestions are highlighted in DarkGreen

and I cannot find a way to change these colors.

+3


source to share





All Articles