aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/Ui/IHostUiTheme.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/Ui/IHostUiTheme.cs')
-rw-r--r--src/Ryujinx.HLE/Ui/IHostUiTheme.cs13
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..6404c80c
--- /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; }
+ }
+}