f06d22d6f0
* Rename Ryujinx.UI.Common * Rename Ryujinx.UI.LocaleGenerator * Update in Files AboutWindow * Configuration State * Rename projects * Ryujinx/UI * Fix build * Main remaining inconsistencies * HLE.UI Namespace * HLE.UI Files * Namespace * Ryujinx.UI.Common.Configuration.UI * Ryujinx.UI.Common,Configuration.UI Files * More instances
13 lines
366 B
C#
13 lines
366 B
C#
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; }
|
|
}
|
|
}
|