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