-
Notifications
You must be signed in to change notification settings - Fork 15
/
App.xaml
27 lines (25 loc) · 1.36 KB
/
App.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:windows="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific;assembly=Microsoft.Maui.Controls"
xmlns:local="clr-namespace:PullToRefresh"
x:Class="PullToRefresh.App"
windows:Application.ImageDirectory="Assets">
<Application.Resources>
<ResourceDictionary>
<Color x:Key="Primary">#512BD4</Color>
<Color x:Key="PrimaryLight">#deedff</Color>
<Color x:Key="NormalText">#55575c</Color>
<Color x:Key="NormalHeaderText">#404144</Color>
<Color x:Key="NormalLightText">#959aa0</Color>
<Color x:Key="DrawerTitleTextColor">White</Color>
<Style TargetType="NavigationPage">
<Setter Property="BarBackgroundColor" Value="{StaticResource Primary}"/>
<Setter Property="BarTextColor" Value="{StaticResource DrawerTitleTextColor}"/>
</Style>
<Style x:Key="PrimaryButton" TargetType="Button">
<Setter Property="BackgroundColor" Value="{StaticResource Primary}"/>
<Setter Property="TextColor" Value="White"/>
</Style>
</ResourceDictionary>
</Application.Resources>
</Application>