|
|
|
@ -19,6 +19,10 @@
|
|
|
|
|
<Setter Property="StrokeThickness" Value="1"/>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="Border" x:Key="MainBorder">
|
|
|
|
|
<Setter Property="Stroke" Value="Transparent" />
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="BoxView">
|
|
|
|
|
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}" />
|
|
|
|
|
</Style>
|
|
|
|
@ -53,6 +57,24 @@
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="Button" x:Key="BackButton">
|
|
|
|
|
<Setter Property="Grid.Column" Value="0" />
|
|
|
|
|
<Setter Property="Grid.Row" Value="0" />
|
|
|
|
|
<Setter Property="HorizontalOptions" Value="Start"/>
|
|
|
|
|
<Setter Property="VerticalOptions" Value="Center"/>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="Button" x:Key="MainButton">
|
|
|
|
|
<Setter Property="WidthRequest" Value="200" />
|
|
|
|
|
<Setter Property="HorizontalOptions" Value="Center"/>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="Button" x:Key="ConfirmButton">
|
|
|
|
|
<Setter Property="Margin" Value="200" />
|
|
|
|
|
<Setter Property="HorizontalOptions" Value="Center"/>
|
|
|
|
|
<Setter Property="VerticalOptions" Value="End"/>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="CheckBox">
|
|
|
|
|
<Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
|
|
|
|
<Setter Property="MinimumHeightRequest" Value="44"/>
|
|
|
|
@ -115,13 +137,15 @@
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="Entry">
|
|
|
|
|
<Setter Property="TextColor" Value="Black" />
|
|
|
|
|
<Setter Property="TextColor" Value="Grey" />
|
|
|
|
|
<Setter Property="BackgroundColor" Value="White" />
|
|
|
|
|
<Setter Property="FontFamily" Value="Lexend-Meduim"/>
|
|
|
|
|
<Setter Property="FontSize" Value="14" />
|
|
|
|
|
<Setter Property="HorizontalOptions" Value="Start" />
|
|
|
|
|
<Setter Property="PlaceholderColor" Value="Red" />
|
|
|
|
|
<Setter Property="MinimumHeightRequest" Value="44"/>
|
|
|
|
|
<Setter Property="MinimumWidthRequest" Value="44"/>
|
|
|
|
|
<Setter Property="MinimumWidthRequest" Value="200"/>
|
|
|
|
|
<Setter Property="Margin" Value="10"/>
|
|
|
|
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
|
|
|
<VisualStateGroupList>
|
|
|
|
|
<VisualStateGroup x:Name="CommonStates">
|
|
|
|
@ -187,11 +211,20 @@
|
|
|
|
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" />
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="Label" x:Key="SuperTitle">
|
|
|
|
|
<Setter Property="FontSize" Value="100" />
|
|
|
|
|
<Setter Property="FontFamily" Value="DiloWorld" />
|
|
|
|
|
<Setter Property="TextColor" Value="DarkSlateGrey" />
|
|
|
|
|
<Setter Property="HorizontalOptions" Value="Center" />
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="Label" x:Key="Title">
|
|
|
|
|
<Setter Property="TextColor" Value="Black" />
|
|
|
|
|
<Setter Property="FontSize" Value="20" />
|
|
|
|
|
<Setter Property="Grid.Column" Value="1" />
|
|
|
|
|
<Setter Property="Grid.Row" Value="0" />
|
|
|
|
|
<Setter Property="FontSize" Value="Header" />
|
|
|
|
|
<Setter Property="Padding" Value="75" />
|
|
|
|
|
<Setter Property="HorizontalOptions" Value="Center" />
|
|
|
|
|
<Setter Property="Padding" Value="50, 10" />
|
|
|
|
|
<Setter Property="FontAttributes" Value="Bold" />
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
@ -203,12 +236,18 @@
|
|
|
|
|
<Setter Property="FontAttributes" Value="Bold" />
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="Label" x:Key="Content">
|
|
|
|
|
<Style TargetType="Label" x:Key="ContentCenter">
|
|
|
|
|
<Setter Property="TextColor" Value="Black" />
|
|
|
|
|
<Setter Property="FontSize" Value="20" />
|
|
|
|
|
<Setter Property="HorizontalOptions" Value="Center" />
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="Label" x:Key="ContentStart">
|
|
|
|
|
<Setter Property="TextColor" Value="Black" />
|
|
|
|
|
<Setter Property="FontSize" Value="20" />
|
|
|
|
|
<Setter Property="HorizontalOptions" Value="Start" />
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="ListView">
|
|
|
|
|
<Setter Property="SeparatorColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" />
|
|
|
|
|
<Setter Property="RefreshControlColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" />
|
|
|
|
@ -403,26 +442,26 @@
|
|
|
|
|
|
|
|
|
|
<Style TargetType="Shell" ApplyToDerivedTypes="True">
|
|
|
|
|
<Setter Property="Shell.BackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource OffBlack}}" />
|
|
|
|
|
<Setter Property="Shell.ForegroundColor" Value="{OnPlatform WinUI={StaticResource Primary}, Default={StaticResource White}}" />
|
|
|
|
|
<Setter Property="Shell.ForegroundColor" Value="Green" />
|
|
|
|
|
<Setter Property="Shell.TitleColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource SecondaryDarkText}}" />
|
|
|
|
|
<Setter Property="Shell.DisabledColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}" />
|
|
|
|
|
<Setter Property="Shell.UnselectedColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray200}}" />
|
|
|
|
|
<Setter Property="Shell.NavBarHasShadow" Value="False" />
|
|
|
|
|
<Setter Property="Shell.TabBarBackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}" />
|
|
|
|
|
<Setter Property="Shell.TabBarForegroundColor" Value="{AppThemeBinding Light={StaticResource Magenta}, Dark={StaticResource White}}" />
|
|
|
|
|
<Setter Property="Shell.TabBarTitleColor" Value="{AppThemeBinding Light={StaticResource Magenta}, Dark={StaticResource White}}" />
|
|
|
|
|
<Setter Property="Shell.TabBarForegroundColor" Value="Green" />
|
|
|
|
|
<Setter Property="Shell.TabBarTitleColor" Value="CornflowerBlue" />
|
|
|
|
|
<Setter Property="Shell.TabBarUnselectedColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" />
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="NavigationPage">
|
|
|
|
|
<Setter Property="BarBackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource OffBlack}}" />
|
|
|
|
|
<Setter Property="BarTextColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource White}}" />
|
|
|
|
|
<Setter Property="BarTextColor" Value="Orange" />
|
|
|
|
|
<Setter Property="IconColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource White}}" />
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="TabbedPage">
|
|
|
|
|
<Setter Property="BarBackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Gray950}}" />
|
|
|
|
|
<Setter Property="BarTextColor" Value="{AppThemeBinding Light={StaticResource Magenta}, Dark={StaticResource White}}" />
|
|
|
|
|
<Setter Property="BarTextColor" Value="DarkSalmon" />
|
|
|
|
|
<Setter Property="UnselectedTabColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}" />
|
|
|
|
|
<Setter Property="SelectedTabColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}" />
|
|
|
|
|
</Style>
|
|
|
|
|