Expanding theme tab to customization tab. Started improving theme selection.
This commit is contained in:
49
Moonlight.Shared/Misc/ApplicationTheme.cs
Normal file
49
Moonlight.Shared/Misc/ApplicationTheme.cs
Normal file
@@ -0,0 +1,49 @@
|
||||
namespace Moonlight.Shared.Misc;
|
||||
|
||||
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 float Depth { get; set; }
|
||||
public float Noise { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user