2024-02-11 02:09:18 +00:00
|
|
|
namespace Ryujinx.HLE.UI
|
2021-10-12 16:54:21 -03:00
|
|
|
{
|
2024-02-11 02:09:18 +00:00
|
|
|
public interface IHostUITheme
|
2021-10-12 16:54:21 -03:00
|
|
|
{
|
|
|
|
|
string FontFamily { get; }
|
|
|
|
|
|
|
|
|
|
ThemeColor DefaultBackgroundColor { get; }
|
|
|
|
|
ThemeColor DefaultForegroundColor { get; }
|
|
|
|
|
ThemeColor DefaultBorderColor { get; }
|
|
|
|
|
ThemeColor SelectionBackgroundColor { get; }
|
|
|
|
|
ThemeColor SelectionForegroundColor { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|