/ src / Ryujinx.Headless.SDL2 / HeadlessHostUiTheme.cs
HeadlessHostUiTheme.cs
 1  using Ryujinx.HLE.UI;
 2  
 3  namespace Ryujinx.Headless.SDL2
 4  {
 5      internal class HeadlessHostUiTheme : IHostUITheme
 6      {
 7          public string FontFamily => "sans-serif";
 8  
 9          public ThemeColor DefaultBackgroundColor => new(1, 0, 0, 0);
10          public ThemeColor DefaultForegroundColor => new(1, 1, 1, 1);
11          public ThemeColor DefaultBorderColor => new(1, 1, 1, 1);
12          public ThemeColor SelectionBackgroundColor => new(1, 1, 1, 1);
13          public ThemeColor SelectionForegroundColor => new(1, 0, 0, 0);
14      }
15  }