Dark.axaml 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <Styles xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Design.PreviewWith>
  4. <Border Padding="20">
  5. <!-- Add Controls for Previewer Here -->
  6. </Border>
  7. </Design.PreviewWith>
  8. <!-- * Window * -->
  9. <Style Selector="Window">
  10. <Setter Property="FontFamily" Value="Dosis"/>
  11. <Setter Property="FontSize" Value="10"/>
  12. <!--<Setter Property="Background" Value="Black"/>-->
  13. <!--<Setter Property="Foreground" Value="GreenYellow"/>-->
  14. </Style>
  15. <Style Selector="Border">
  16. <Setter Property="BorderBrush" Value="DarkGreen"/>
  17. </Style>
  18. <Style Selector="SplitView">
  19. <!--<Setter Property="PaneBackground" Value="Black"/>-->
  20. <Setter Property="Foreground" Value="GreenYellow"/>
  21. <Setter Property="BorderThickness" Value="1"/>
  22. </Style>
  23. <Style Selector="TextBlock">
  24. <Setter Property="Height" Value="12"/>
  25. <Setter Property="FontSize" Value="10"/>
  26. </Style>
  27. </Styles>