VMware Cloud Community
chrischrischris
Enthusiast
Enthusiast

What colors do folks use for PSReadLine?

Hi all,

What colors do folks use for PSReadLine?

Below are mine:

# A set of harmonious Shades of Green from
# https://htmlcolorcodes.com/colors/
$TermShadesOfGreen = @{
"Command" = '#AAFF00'
"Comment" = '#00FFFF'
"ContinuationPrompt" = '#7FFFD4'
"Default" = '#50C878'
"Emphasis" = '#C4B454'
"Error" = '#7DF9FF'
"InlinePrediction" = '#00A36C'
"Keyword" = '#32CD32'
"ListPrediction" = '#0FFF50'
"ListPredictionSelected" = '#CC5500'
"Member" = '#40E0D0'
"Number" = '#C9CC3F'
"Operator" = '#93C572'
"Parameter" = '#00FF7F'
"Selection" = '#FF5F1F'
"String" = '#40B5AD'
"Type" = '#C1E1C1'
"Variable" = '#0BDA51'
}
Set-PSReadLineOption -Colors $TermShadesOfGreen

0 Kudos
1 Reply
LucD
Leadership
Leadership

Nice, but make sure to take the Contrast Ratio into account.
Especially when doing presentations or working together with your peers on one screen.


Blog: lucd.info  Twitter: @LucD22  Co-author PowerCLI Reference

0 Kudos