mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-25 19:45:13 +00:00
14 lines
369 B
C#
14 lines
369 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; }
|
|||
|
}
|
|||
|
}
|