mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-10 12:47:44 +02:00
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);
|
|
}
|
|
}
|