FrymasterBadgeApp/Resources/Styles/Styles.xaml

33 lines
1.3 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<?xaml-comp compile="true" ?>
<ResourceDictionary
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
>
<Style TargetType="Label">
<Setter Property="TextColor" Value="{StaticResource Gray900}" />
<Setter Property="FontFamily" Value="OpenSansRegular" />
</Style>
<Style x:Key="CardFrame" TargetType="Frame">
<Setter Property="BackgroundColor" Value="{StaticResource White}" />
<Setter Property="BorderColor" Value="{StaticResource Gray200}" />
<Setter Property="CornerRadius" Value="8" />
<Setter Property="HasShadow" Value="True" />
<Setter Property="Padding" Value="15" />
</Style>
<Style x:Key="EntryStyle" TargetType="Entry">
<Setter Property="TextColor" Value="{StaticResource Gray900}" />
<Setter Property="PlaceholderColor" Value="{StaticResource Gray500}" />
<Setter Property="FontSize" Value="14" />
<Setter Property="BackgroundColor" Value="{StaticResource Gray100}" />
<Setter Property="Margin" Value="0,5" />
</Style>
<Style TargetType="NavigationPage">
<Setter Property="BarBackgroundColor" Value="{StaticResource Primary}" />
<Setter Property="BarTextColor" Value="{StaticResource White}" />
</Style>
</ResourceDictionary>