Avalonia based Editor for Romhackers

App.xaml 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <Application xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Application.Styles>
  4. <Style Selector="Border.grouped">
  5. <Setter Property="Background" Value="{DynamicResource ThemeBackgroundBrush}"/>
  6. <Setter Property="BorderBrush" Value="{DynamicResource ThemeBorderLightBrush}"/>
  7. <Setter Property="CornerRadius" Value="2"/>
  8. <Setter Property="BorderThickness" Value="3"/>
  9. </Style>
  10. <Style Selector="Button">
  11. <Setter Property="FontWeight" Value="Light"/>
  12. <Setter Property="FontFamily" Value="resm:Editopia.Editor.Assets.Font.Roboto-Light.ttf?assembly=Editopia.Editor#Roboto" />
  13. <Setter Property="FontSize" Value="14"/>
  14. </Style>
  15. <Style Selector="TextBlock.content">
  16. <Setter Property="Foreground" Value="#212121"/>
  17. <Setter Property="FontSize" Value="20"/>
  18. <Setter Property="FontWeight" Value="Regular"/>
  19. <Setter Property="FontFamily" Value="resm:Editopia.Editor.Assets.Font.Roboto-Regular.ttf?assembly=Editopia.Editor#Roboto"/>
  20. </Style>
  21. <Style Selector="TextBlock.emph">
  22. <Setter Property="FontWeight" Value="Bold"/>
  23. <Setter Property="FontFamily" Value="resm:Editopia.Editor.Assets.Font.Roboto-Bold.ttf?assembly=Editopia.Editor#Roboto"/>
  24. </Style>
  25. <Style Selector="TextBlock.h1">
  26. <Setter Property="Foreground" Value="#212121"/>
  27. <Setter Property="FontSize" Value="56"/>
  28. <Setter Property="FontWeight" Value="Light"/>
  29. <Setter Property="FontFamily" Value="resm:Editopia.Editor.Assets.Font.Roboto-Light.ttf?assembly=Editopia.Editor#Roboto"/>
  30. </Style>
  31. <Style Selector="TextBlock.sub1">
  32. <Setter Property="FontWeight" Value="Regular"/>
  33. <Setter Property="FontFamily" Value="resm:Editopia.Editor.Assets.Font.Roboto-Regular.ttf?assembly=Editopia.Editor#Roboto"/>
  34. <Setter Property="Foreground" Value="#727272"/>
  35. <Setter Property="FontSize" Value="13"/>
  36. </Style>
  37. <Style Selector="TextBlock.h2">
  38. <Setter Property="Foreground" Value="#212121"/>
  39. <Setter Property="FontSize" Value="42"/>
  40. <Setter Property="FontWeight" Value="Light"/>
  41. <Setter Property="FontFamily" Value="resm:Editopia.Editor.Assets.Font.Roboto-Light.ttf?assembly=Editopia.Editor#Roboto"/>
  42. </Style>
  43. <Style Selector="TextBlock.brand">
  44. <Setter Property="FontWeight" Value="Regular"/>
  45. <Setter Property="FontFamily" Value="resm:Editopia.Editor.Assets.Font.Awesome.Fa5-Brands-Regular-400.otf?assembly=Editopia.Editor#FontAwesome"/>
  46. </Style>
  47. <StyleInclude Source="resm:Avalonia.Themes.Default.DefaultTheme.xaml?assembly=Avalonia.Themes.Default"/>
  48. <StyleInclude Source="resm:Avalonia.Themes.Default.Accents.BaseLight.xaml?assembly=Avalonia.Themes.Default"/>
  49. <StyleInclude Source="resm:Editopia.Editor.Sidebar.Sidebar.xaml"/>
  50. </Application.Styles>
  51. </Application>