mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 22:58:39 +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; }
|
|||
|
}
|
|||
|
}
|