App.xaml 754 B

12345678910111213141516171819
  1. <Application xmlns="https://github.com/avaloniaui">
  2. <Application.Styles>
  3. <StyleInclude Source="resm:Avalonia.Themes.Default.DefaultTheme.xaml?assembly=Avalonia.Themes.Default"/>
  4. <StyleInclude Source="resm:Avalonia.Themes.Default.Accents.BaseLight.xaml?assembly=Avalonia.Themes.Default"/>
  5. <Style Selector="TextBlock.h1">
  6. <Setter Property="Foreground" Value="#212121"/>
  7. <Setter Property="FontSize" Value="20"/>
  8. <Setter Property="FontWeight" Value="Medium"/>
  9. </Style>
  10. <Style Selector="TextBlock.h2">
  11. <Setter Property="Foreground" Value="#727272"/>
  12. <Setter Property="FontSize" Value="13"/>
  13. </Style>
  14. <StyleInclude Source="resm:ControlCatalog.SideBar.xaml"/>
  15. </Application.Styles>
  16. </Application>