Terminal UI V2, advanced binding
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\AppCommon\FileTime.App.Core.Abstraction\FileTime.App.Core.Abstraction.csproj" />
|
||||
<ProjectReference Include="..\..\Library\TerminalUI\TerminalUI.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
20
src/ConsoleApp/FileTime.ConsoleUI.App.Abstractions/ITheme.cs
Normal file
20
src/ConsoleApp/FileTime.ConsoleUI.App.Abstractions/ITheme.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using TerminalUI.Models;
|
||||
|
||||
namespace FileTime.ConsoleUI.App;
|
||||
|
||||
public interface ITheme
|
||||
{
|
||||
IColor? ItemBackgroundColor { get; }
|
||||
IColor? AlternativeItemBackgroundColor { get; }
|
||||
IColor? SelectedItemBackgroundColor { get; }
|
||||
IColor? MarkedItemBackgroundColor { get; }
|
||||
IColor? MarkedAlternativeItemBackgroundColor { get; }
|
||||
IColor? MarkedSelectedItemBackgroundColor { get; }
|
||||
IColor? DefaultForegroundColor { get; }
|
||||
IColor? DefaultBackgroundColor { get; }
|
||||
IColor? AlternativeItemForegroundColor { get; }
|
||||
IColor? SelectedItemForegroundColor { get; }
|
||||
IColor? MarkedItemForegroundColor { get; }
|
||||
IColor? MarkedAlternativeItemForegroundColor { get; }
|
||||
IColor? MarkedSelectedItemForegroundColor { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user