f06d22d6f0
* Rename Ryujinx.UI.Common * Rename Ryujinx.UI.LocaleGenerator * Update in Files AboutWindow * Configuration State * Rename projects * Ryujinx/UI * Fix build * Main remaining inconsistencies * HLE.UI Namespace * HLE.UI Files * Namespace * Ryujinx.UI.Common.Configuration.UI * Ryujinx.UI.Common,Configuration.UI Files * More instances
15 lines
521 B
C#
15 lines
521 B
C#
using Ryujinx.HLE.UI;
|
|
|
|
namespace Ryujinx.Headless.SDL2
|
|
{
|
|
internal class HeadlessHostUiTheme : IHostUITheme
|
|
{
|
|
public string FontFamily => "sans-serif";
|
|
|
|
public ThemeColor DefaultBackgroundColor => new(1, 0, 0, 0);
|
|
public ThemeColor DefaultForegroundColor => new(1, 1, 1, 1);
|
|
public ThemeColor DefaultBorderColor => new(1, 1, 1, 1);
|
|
public ThemeColor SelectionBackgroundColor => new(1, 1, 1, 1);
|
|
public ThemeColor SelectionForegroundColor => new(1, 0, 0, 0);
|
|
}
|
|
}
|