Files
FileTime/src/FileTime.ConsoleUI.App/UI/IStyles.cs
2022-01-07 10:41:27 +01:00

20 lines
740 B
C#

using FileTime.ConsoleUI.App.UI.Color;
namespace FileTime.ConsoleUI.App.UI
{
public interface IStyles
{
IConsoleColor? DefaultBackground { get; }
IConsoleColor? DefaultForeground { get; }
IConsoleColor? ContainerBackground { get; }
IConsoleColor? ContainerForeground { get; }
IConsoleColor? ElementBackground { get; }
IConsoleColor? ElementForeground { get; }
IConsoleColor? ElementSpecialBackground { get; }
IConsoleColor? ElementSpecialForeground { get; }
IConsoleColor? SelectedItemBackground { get; }
IConsoleColor? SelectedItemForeground { get; }
IConsoleColor? ErrorColor { get; }
IConsoleColor? AccentForeground { get; }
}
}