File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed
src/PowerShellEditorServices/Session/Host Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,28 @@ internal ConsoleColorProxy(EditorServicesPSHostUserInterface hostUserInterface)
87
87
_hostUserInterface = hostUserInterface ;
88
88
}
89
89
90
+ /// <summary>
91
+ /// The Accent Color for Formatting
92
+ /// </summary>
93
+ public ConsoleColor FormatAccentColor
94
+ {
95
+ get
96
+ { return _hostUserInterface . FormatAccentColor ; }
97
+ set
98
+ { _hostUserInterface . FormatAccentColor = value ; }
99
+ }
100
+
101
+ /// <summary>
102
+ /// The Accent Color for Error
103
+ /// </summary>
104
+ public ConsoleColor ErrorAccentColor
105
+ {
106
+ get
107
+ { return _hostUserInterface . ErrorAccentColor ; }
108
+ set
109
+ { _hostUserInterface . ErrorAccentColor = value ; }
110
+ }
111
+
90
112
/// <summary>
91
113
/// The ForegroundColor for Error
92
114
/// </summary>
Original file line number Diff line number Diff line change @@ -690,6 +690,9 @@ private void WriteDebuggerBanner(DebuggerStopEventArgs eventArgs)
690
690
691
691
internal static ConsoleColor BackgroundColor { get ; set ; }
692
692
693
+ internal ConsoleColor FormatAccentColor { get ; set ; } = ConsoleColor . Green ;
694
+ internal ConsoleColor ErrorAccentColor { get ; set ; } = ConsoleColor . Cyan ;
695
+
693
696
internal ConsoleColor ErrorForegroundColor { get ; set ; } = ConsoleColor . Red ;
694
697
internal ConsoleColor ErrorBackgroundColor { get ; set ; } = BackgroundColor ;
695
698
You can’t perform that action at this time.
0 commit comments