IHostUiTheme.cs 369 B

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