blob: 6404c80c9d52f4e2b39a1b23f06e4ead97206ca5 (
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; }
}
}
|