IHostUITheme.cs
1 namespace Ryujinx.HLE.UI 2 { 3 public interface IHostUITheme 4 { 5 string FontFamily { get; } 6 7 ThemeColor DefaultBackgroundColor { get; } 8 ThemeColor DefaultForegroundColor { get; } 9 ThemeColor DefaultBorderColor { get; } 10 ThemeColor SelectionBackgroundColor { get; } 11 ThemeColor SelectionForegroundColor { get; } 12 } 13 }