Style, small fixes, Windows single file

This commit is contained in:
2022-01-07 11:08:56 +01:00
parent ee82603f2f
commit e4dde1181c
5 changed files with 20 additions and 3 deletions

View File

@@ -237,6 +237,7 @@ namespace FileTime.ConsoleUI.App.UI
Console.SetCursorPosition(startX, startY + currentY++);
_coloredRenderer.Write($"{{0,-{elementWidth}}}", _paddingLeft + "<empty>" + _paddingRight);
printedItemsCount++;
}
var padding = new string(' ', elementWidth);

View File

@@ -37,7 +37,7 @@ namespace FileTime.ConsoleUI.App.UI
ElementBackground = new BasicColor(Console.BackgroundColor);
ElementForeground = new BasicColor(Console.ForegroundColor);
ElementSpecialForeground = new BasicColor(ConsoleColor.DarkGreen);
SelectedItemForeground = new BasicColor(ConsoleColor.DarkCyan);
SelectedItemForeground = new BasicColor(ConsoleColor.DarkYellow);
ErrorColor = new BasicColor(ConsoleColor.Red);
AccentForeground = new BasicColor(ConsoleColor.Green);