App.xaml 1.2 KB

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. xmlns:local="clr-namespace:VeloeKemonoPartyApp"
  5. xmlns:pages="clr-namespace:VeloeKemonoPartyApp.Pages"
  6. x:Class="VeloeKemonoPartyApp.App">
  7. <Application.Resources>
  8. <ResourceDictionary>
  9. <Color x:Key="PageBackgroundColor">#512bdf</Color>
  10. <Color x:Key="PrimaryTextColor">White</Color>
  11. <Style TargetType="Label">
  12. <Setter Property="TextColor" Value="{DynamicResource PrimaryTextColor}" />
  13. <Setter Property="FontFamily" Value="OpenSansRegular" />
  14. </Style>
  15. <Style TargetType="Button">
  16. <Setter Property="TextColor" Value="{DynamicResource PrimaryTextColor}" />
  17. <Setter Property="FontFamily" Value="OpenSansRegular" />
  18. <Setter Property="BackgroundColor" Value="#2b0b98" />
  19. <Setter Property="Padding" Value="14,10" />
  20. </Style>
  21. </ResourceDictionary>
  22. </Application.Resources>
  23. </Application>