88 lines
4.3 KiB
XML
88 lines
4.3 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<Application xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="BookAStar.App"
|
|
xmlns:sys="clr-namespace:System;assembly=mscorlib">
|
|
|
|
<Application.Resources>
|
|
|
|
<ResourceDictionary>
|
|
|
|
<Color x:Key="PageBackgroundColor">#30FAFAFA</Color>
|
|
<Color x:Key="ContentBackgroundColor">#ffffff</Color>
|
|
<Color x:Key="PageForegroundColor">#000000</Color>
|
|
<Color x:Key="HeadingTextColor">Black</Color>
|
|
<Color x:Key="NormalTextColor">Blue</Color>
|
|
<Color x:Key="GroupingTextColor">#5050ff</Color>
|
|
|
|
<OnPlatform x:TypeArguments="Font" Android="Large" iOS="Large" WinPhone="Large" x:Key="HeaderFont" />
|
|
<OnPlatform x:TypeArguments="Color" Android="Red" iOS="Red" WinPhone="Red" x:Key="EmphasisTextColor" />
|
|
<OnPlatform x:TypeArguments="Font" Android="60" iOS="60" WinPhone="60" x:Key="LargeFontSize" />
|
|
<OnPlatform x:TypeArguments="Font" Android="50" iOS="50" WinPhone="50" x:Key="MediumFontSize" />
|
|
<OnPlatform x:TypeArguments="Font" Android="40" iOS="40" WinPhone="40" x:Key="SmallFontSize" />
|
|
<OnPlatform x:TypeArguments="x:Double" Android="130" iOS="130" WinPhone="130" x:Key="BigUserAvatarSize" />
|
|
|
|
|
|
<Color x:Key="BackgroundColor">#30AAAAFA</Color>
|
|
<Color x:Key="OddColor">#207AFAFA</Color>
|
|
<Color x:Key="TextColor">#FF103010</Color>
|
|
<Color x:Key="LabelColor">#FF303010</Color>
|
|
|
|
<Style x:Key="LabelPageHeadingStyle" TargetType="Label">
|
|
<Setter Property="FontAttributes" Value="Bold" />
|
|
<Setter Property="HorizontalOptions" Value="Center" />
|
|
<Setter Property="TextColor" Value="{StaticResource HeadingTextColor}" />
|
|
<Setter Property="FontSize" Value="{StaticResource LargeFontSize}" />
|
|
</Style>
|
|
|
|
<Style x:Key="InputLabelStyle" TargetType="Label">
|
|
<Setter Property="FontSize" Value="{StaticResource SmallFontSize}" />
|
|
<Setter Property="FontAttributes" Value="Italic" />
|
|
<Setter Property="HorizontalOptions" Value="Center" />
|
|
<Setter Property="TextColor" Value="{StaticResource GroupingTextColor}" />
|
|
<Setter Property="VerticalOptions" Value="Start" />
|
|
</Style>
|
|
|
|
<Style x:Key="LabelStyle" TargetType="Label">
|
|
<Setter Property="TextColor" Value="{StaticResource TextColor}" />
|
|
<Setter Property="FontAttributes" Value="Bold" />
|
|
<Setter Property="FontSize" Value="{StaticResource MediumFontSize}" />
|
|
<Setter Property="LineBreakMode" Value="WordWrap" />
|
|
</Style>
|
|
|
|
<Style x:Key="BigLabel" BasedOn="{StaticResource LabelStyle}" TargetType="Label">
|
|
<Setter Property="FontSize" Value="Large" />
|
|
</Style>
|
|
<Style x:Key="ContentLabelStyle" BasedOn="{StaticResource LabelStyle}" TargetType="Label">
|
|
<Setter Property="FontSize" Value="{StaticResource MediumFontSize}" />
|
|
<Setter Property="HorizontalOptions" Value="CenterAndExpand" />
|
|
</Style>
|
|
|
|
<Style x:Key="EntryStyle" TargetType="Entry">
|
|
<Setter Property="HorizontalOptions" Value="CenterAndExpand"/>
|
|
</Style>
|
|
<Style x:Key="PickerStyle" TargetType="Picker">
|
|
<Setter Property="HorizontalOptions" Value="CenterAndExpand"/>
|
|
</Style>
|
|
<Style x:Key="BigEntry" TargetType="Entry" BasedOn="{StaticResource EntryStyle}">
|
|
<Setter Property="FontSize" Value="{StaticResource LargeFontSize}" />
|
|
<Setter Property="FontAttributes" Value="Bold" />
|
|
</Style>
|
|
|
|
<Style x:Key="ButtonStyle" TargetType="Button">
|
|
<Setter Property="HorizontalOptions" Value="Center" />
|
|
<Setter Property="VerticalOptions" Value="CenterAndExpand" />
|
|
<Setter Property="BorderColor" Value="Lime" />
|
|
<Setter Property="BorderRadius" Value="5" />
|
|
<Setter Property="BorderWidth" Value="5" />
|
|
<Setter Property="WidthRequest" Value="200" />
|
|
<Setter Property="TextColor" Value="Teal" />
|
|
</Style>
|
|
|
|
<Style x:Key="PageStyle" TargetType="ContentPage">
|
|
<Setter Property="Padding" Value="5,5,5,5" />
|
|
<Setter Property="BackgroundColor" Value="{StaticResource PageBackgroundColor}" />
|
|
</Style>
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</Application> |