complete account page
This commit is contained in:
@ -23,6 +23,7 @@ namespace Billing.Themes
|
||||
public const string TextColor = nameof(TextColor);
|
||||
public const string SecondaryTextColor = nameof(SecondaryTextColor);
|
||||
public const string RedColor = nameof(RedColor);
|
||||
public const string GreenColor = nameof(GreenColor);
|
||||
|
||||
protected abstract Color PrimaryMauiColor { get; }
|
||||
protected abstract Color SecondaryMauiColor { get; }
|
||||
|
@ -28,6 +28,7 @@ namespace Billing.Themes
|
||||
Add(TextColor, Color.FromRgb(0xcc, 0xcc, 0xcc));
|
||||
Add(SecondaryTextColor, Color.LightGray);
|
||||
Add(RedColor, Color.FromRgb(211, 5, 5));
|
||||
Add(GreenColor, Color.FromRgb(5, 211, 5));
|
||||
|
||||
Add(new Style(typeof(TabBar))
|
||||
{
|
||||
|
@ -28,6 +28,7 @@ namespace Billing.Themes
|
||||
Add(TextColor, Color.FromRgb(0x33, 0x33, 0x33));
|
||||
Add(SecondaryTextColor, Color.DimGray);
|
||||
Add(RedColor, Color.FromRgb(211, 64, 85));
|
||||
Add(RedColor, Color.FromRgb(64, 211, 85));
|
||||
|
||||
Add(new Style(typeof(TabBar))
|
||||
{
|
||||
|
Reference in New Issue
Block a user