Ryujinx/src/Ryujinx.HLE/UI/IHostUITheme.cs

14 lines
366 B
C#
Raw Normal View History

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; }
}
}