File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,7 @@ public static class GlobalSettings
12
12
/// <summary>
13
13
/// This is the default color all text will be. If unset, will be White.
14
14
/// </summary>
15
- public static Color DefaultTextColor { get ; set ; } = IColorService . ConsoleColorToDrawingColor ( ConsoleColor . White ) ;
16
-
15
+ public static Color DefaultTextColor { get => defaultTextColor ; set => defaultTextColor = value ; }
17
16
/// <summary>
18
17
/// How many line breaks between menues or paragraphs. Set to 1 by default.
19
18
/// </summary>
@@ -45,6 +44,7 @@ public static IColorService ColorService
45
44
46
45
private static IConsoleService ? _service ;
47
46
private static IColorService ? _colorService ;
47
+ private static Color defaultTextColor = IColorService . ConsoleColorToDrawingColor ( ConsoleColor . White ) ;
48
48
49
49
public static Host Content { get ; set ; } = InitializeContent ( ) ;
50
50
You can’t perform that action at this time.
0 commit comments