blob: 11d82361abf13522e18894a0f70ba6f339958181 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
namespace Ryujinx.HLE.Ui
{
public interface IHostUiTheme
{
string FontFamily { get; }
ThemeColor DefaultBackgroundColor { get; }
ThemeColor DefaultForegroundColor { get; }
ThemeColor DefaultBorderColor { get; }
ThemeColor SelectionBackgroundColor { get; }
ThemeColor SelectionForegroundColor { get; }
}
}
|