blob: 3b0544004ec5c6c1cc78ada0dda3cadb3c2721c9 (
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; }
}
}
|