You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2 viikkoa sitten
1234567891011121314151617181920212223242526
  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:HybridApp"
  5. x:Class="HybridApp.App">
  6. <Application.Resources>
  7. <ResourceDictionary>
  8. <Color x:Key="PageBackgroundColor">#512bdf</Color>
  9. <Color x:Key="PrimaryTextColor">White</Color>
  10. <Style TargetType="Label">
  11. <Setter Property="TextColor" Value="{DynamicResource PrimaryTextColor}" />
  12. <Setter Property="FontFamily" Value="OpenSansRegular" />
  13. </Style>
  14. <Style TargetType="Button">
  15. <Setter Property="TextColor" Value="{DynamicResource PrimaryTextColor}" />
  16. <Setter Property="FontFamily" Value="OpenSansRegular" />
  17. <Setter Property="BackgroundColor" Value="#2b0b98" />
  18. <Setter Property="Padding" Value="14,10" />
  19. </Style>
  20. </ResourceDictionary>
  21. </Application.Resources>
  22. </Application>