2023-12-04 14:17:13 +01:00
|
|
|
namespace Ryujinx.HLE.Ui
|
2021-10-12 16:54:21 -03:00
|
|
|
{
|
|
|
|
|
public interface IHostUiTheme
|
|
|
|
|
{
|
|
|
|
|
string FontFamily { get; }
|
|
|
|
|
|
|
|
|
|
ThemeColor DefaultBackgroundColor { get; }
|
|
|
|
|
ThemeColor DefaultForegroundColor { get; }
|
|
|
|
|
ThemeColor DefaultBorderColor { get; }
|
|
|
|
|
ThemeColor SelectionBackgroundColor { get; }
|
|
|
|
|
ThemeColor SelectionForegroundColor { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|