Styles1.axaml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <Styles xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style Selector="TextBlock.PurpleTextBlock">
  4. <Setter Property="Foreground" Value="#800080"/>
  5. <Setter Property="FontSize" Value="16" />
  6. </Style>
  7. <Style Selector="TextBlock">
  8. <Setter Property="Foreground" Value="#FFFFFF"/>
  9. <Setter Property="FontSize" Value="16" />
  10. </Style>
  11. <Style Selector="TextBox">
  12. <Setter Property="Background" Value="#800080" />
  13. <Setter Property="Foreground" Value="#FFFFFF" />
  14. <Setter Property="BorderBrush" Value="#DA70D6" />
  15. <Setter Property="BorderThickness" Value="2" />
  16. <Setter Property="Padding" Value="5" />
  17. <Setter Property="FontSize" Value="14" />
  18. </Style>
  19. <Style Selector="Button">
  20. <Setter Property="Background" Value="#800080" />
  21. <Setter Property="Foreground" Value="#FFFFFF" />
  22. <Setter Property="BorderBrush" Value="#DA70D6" />
  23. <Setter Property="BorderThickness" Value="2" />
  24. <Setter Property="Padding" Value="10" />
  25. <Setter Property="FontSize" Value="16" />
  26. <Setter Property="CornerRadius" Value="5" />
  27. </Style>
  28. <Style Selector="Button:hover">
  29. <Setter Property="Background" Value="#DA70D6" />
  30. </Style>
  31. </Styles>