Skip to content

Commit 6c7ccc9

Browse files
authored
Change default color for inline prediction to dim (#3493)
1 parent 4bfc4e9 commit 6c7ccc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PSReadLine/Cmdlets.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,10 @@ public class PSConsoleReadLineOptions
9595

9696
// Find the most suitable color using https://stackoverflow.com/a/33206814
9797
// Default prediction color settings:
98-
// - use FG color 'dark black' for the inline-view suggestion text
98+
// - use FG color 'dim white italic' for the inline-view suggestion text
9999
// - use FG color 'yellow' for the list-view suggestion text
100100
// - use BG color 'dark black' for the selected list-view suggestion text
101-
public const string DefaultInlinePredictionColor = "\x1b[38;5;238m";
101+
public const string DefaultInlinePredictionColor = "\x1b[97;2;3m";
102102
public const string DefaultListPredictionColor = "\x1b[33m";
103103
public const string DefaultListPredictionSelectedColor = "\x1b[48;5;238m";
104104

0 commit comments

Comments
 (0)