diff options
Diffstat (limited to 'src/Ryujinx.HLE/UI/IHostUITheme.cs')
-rw-r--r-- | src/Ryujinx.HLE/UI/IHostUITheme.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/UI/IHostUITheme.cs b/src/Ryujinx.HLE/UI/IHostUITheme.cs new file mode 100644 index 00000000..3b054400 --- /dev/null +++ b/src/Ryujinx.HLE/UI/IHostUITheme.cs @@ -0,0 +1,13 @@ +namespace Ryujinx.HLE.UI +{ + public interface IHostUITheme + { + string FontFamily { get; } + + ThemeColor DefaultBackgroundColor { get; } + ThemeColor DefaultForegroundColor { get; } + ThemeColor DefaultBorderColor { get; } + ThemeColor SelectionBackgroundColor { get; } + ThemeColor SelectionForegroundColor { get; } + } +} |