Avalonia based Editor for Romhackers

App.xaml 825B

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