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