aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Headless.SDL2/HeadlessHostUiTheme.cs
blob: a2df6f3eeeccf3df9989d7b449efe57d9f1f4ecf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);
    }
}