浏览代码

fixed default fg color on windows

master
Robin Thoni 7 年前
父节点
当前提交
57fd5d1a06
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      uqac-ia-aspirobot/UI/UiConsole.cs

+ 1
- 1
uqac-ia-aspirobot/UI/UiConsole.cs 查看文件

@@ -83,7 +83,7 @@ namespace uqac_ia_aspirobot.UI
83 83
         {
84 84
             if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
85 85
             {
86
-                Console.ForegroundColor = color.GetValueOrDefault(ConsoleColor.Black);
86
+                Console.ForegroundColor = color.GetValueOrDefault(ConsoleColor.White);
87 87
             }
88 88
             else
89 89
             {

正在加载...
取消
保存