49 lines
1.5 KiB
C#
49 lines
1.5 KiB
C#
namespace Moonlight.ApiServer.Models;
|
|
|
|
public class ApplicationTheme
|
|
{
|
|
public string ColorBackground { get; set; }
|
|
|
|
public string ColorBase100 { get; set; }
|
|
public string ColorBase150 { get; set; }
|
|
public string ColorBase200 { get; set; }
|
|
public string ColorBase250 { get; set; }
|
|
public string ColorBase300 { get; set; }
|
|
|
|
public string ColorBaseContent { get; set; }
|
|
|
|
public string ColorPrimary { get; set; }
|
|
public string ColorPrimaryContent { get; set; }
|
|
|
|
public string ColorSecondary { get; set; }
|
|
public string ColorSecondaryContent { get; set; }
|
|
|
|
public string ColorAccent { get; set; }
|
|
public string ColorAccentContent { get; set; }
|
|
|
|
public string ColorNeutral { get; set; }
|
|
public string ColorNeutralContent { get; set; }
|
|
|
|
public string ColorInfo { get; set; }
|
|
public string ColorInfoContent { get; set; }
|
|
|
|
public string ColorSuccess { get; set; }
|
|
public string ColorSuccessContent { get; set; }
|
|
|
|
public string ColorWarning { get; set; }
|
|
public string ColorWarningContent { get; set; }
|
|
|
|
public string ColorError { get; set; }
|
|
public string ColorErrorContent { get; set; }
|
|
|
|
public float RadiusSelector { get; set; }
|
|
public float RadiusField { get; set; }
|
|
public float RadiusBox { get; set; }
|
|
|
|
public float SizeSelector { get; set; }
|
|
public float SizeField { get; set; }
|
|
|
|
public float Border { get; set; }
|
|
public int Depth { get; set; }
|
|
public int Noise { get; set; }
|
|
} |