-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathApp.xaml
More file actions
34 lines (28 loc) · 1.37 KB
/
App.xaml
File metadata and controls
34 lines (28 loc) · 1.37 KB
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
28
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8" ?>
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Manta"
x:Class="Manta.App">
<Application.Resources>
<ResourceDictionary>
<Color x:Key="PageBackgroundColor">#000000</Color>
<Color x:Key="PrimaryTextColor">White</Color>
<Style TargetType="NavigationPage">
<Setter Property="BarBackgroundColor" Value="{DynamicResource PrimaryTextColor}" />
</Style>
<Style TargetType="Label">
<Setter Property="TextColor" Value="{DynamicResource PrimaryTextColor}" />
<Setter Property="FontFamily" Value="OpenSansRegular" />
</Style>
<Style TargetType="Button">
<Setter Property="TextColor" Value="{DynamicResource PrimaryTextColor}" />
<Setter Property="FontFamily" Value="OpenSansRegular" />
<Setter Property="BackgroundColor" Value="#000000" />
<Setter Property="Padding" Value="14,10" />
</Style>
<Style TargetType="BlazorWebView">
<Setter Property="Background" Value="#000000" />
</Style>
</ResourceDictionary>
</Application.Resources>
</Application>