BasicColor fixes

This commit is contained in:
2022-01-07 10:41:27 +01:00
parent 61c94d1d85
commit ee82603f2f
7 changed files with 35 additions and 9 deletions

View File

@@ -133,13 +133,13 @@ namespace FileTime.ConsoleUI.App.UI
{
Console.SetCursorPosition(0, 0);
_coloredRenderer.ResetColor();
_coloredRenderer.ForegroundColor = AnsiColor.From8bit(2);
_coloredRenderer.ForegroundColor = _appStyle.AccentForeground;
_coloredRenderer.Write(Environment.UserName + "@" + Environment.MachineName);
_coloredRenderer.ResetColor();
_coloredRenderer.Write(' ');
_coloredRenderer.ForegroundColor = AnsiColor.From8bit(4);
_coloredRenderer.ForegroundColor = _appStyle.ContainerForeground;
var path = Pane!.CurrentLocation.FullName + "/";
_coloredRenderer.Write(path);