-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.xaml
More file actions
26 lines (22 loc) · 1.12 KB
/
Copy pathApp.xaml
File metadata and controls
26 lines (22 loc) · 1.12 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
<?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:Physiquinator"
x:Class="Physiquinator.App">
<Application.Resources>
<ResourceDictionary>
<Color x:Key="PageBackgroundColor">#E7E3D1</Color>
<Color x:Key="PrimaryTextColor">#1A1B26</Color>
<Color x:Key="PrimaryButtonBackgroundColor">#FAFF00</Color>
<Color x:Key="PrimaryButtonTextColor">#10111A</Color>
<Style TargetType="Label">
<Setter Property="TextColor" Value="{DynamicResource PrimaryTextColor}" />
</Style>
<Style TargetType="Button">
<Setter Property="TextColor" Value="{DynamicResource PrimaryButtonTextColor}" />
<Setter Property="BackgroundColor" Value="{DynamicResource PrimaryButtonBackgroundColor}" />
<Setter Property="Padding" Value="14,10" />
</Style>
</ResourceDictionary>
</Application.Resources>
</Application>