|
@@ -0,0 +1,71 @@
|
|
|
+<Styles xmlns="https://github.com/avaloniaui"
|
|
|
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
+ <Design.PreviewWith>
|
|
|
+
|
|
|
+ </Design.PreviewWith>
|
|
|
+
|
|
|
+ <Style Selector="TextBlock.but">
|
|
|
+ <Setter Property="Foreground" Value="#FFFFFF"/>
|
|
|
+ <Setter Property="FontSize" Value="16" />
|
|
|
+ </Style>
|
|
|
+
|
|
|
+ <Style Selector="TextBlock">
|
|
|
+ <Setter Property="Foreground" Value="#008080"/>
|
|
|
+ <Setter Property="FontSize" Value="16" />
|
|
|
+ </Style>
|
|
|
+
|
|
|
+ <Style Selector="Button">
|
|
|
+ <Setter Property="Background" Value="#008080"/>
|
|
|
+ <Setter Property="Foreground" Value="#FFFFFF"/>
|
|
|
+ <Setter Property="BorderBrush" Value="#00CED1"/>
|
|
|
+ <Setter Property="BorderThickness" Value="2"/>
|
|
|
+ <Setter Property="FontSize" Value="16"/>
|
|
|
+ <Setter Property="CornerRadius" Value="5"/>
|
|
|
+ </Style>
|
|
|
+
|
|
|
+ <Style Selector="Button:hover">
|
|
|
+ <Setter Property="Background" Value="#00CED1"/>
|
|
|
+ </Style>
|
|
|
+
|
|
|
+ <Style Selector="TextBox">
|
|
|
+ <Setter Property="Background" Value="#E0FFFF"/>
|
|
|
+ <Setter Property="Foreground" Value="#008080"/>
|
|
|
+ <Setter Property="BorderBrush" Value="#00CED1"/>
|
|
|
+ <Setter Property="BorderThickness" Value="2"/>
|
|
|
+ <Setter Property="FontSize" Value="14"/>
|
|
|
+ </Style>
|
|
|
+
|
|
|
+ <Style Selector="CheckBox">
|
|
|
+ <Setter Property="Foreground" Value="#008080"/>
|
|
|
+ </Style>
|
|
|
+
|
|
|
+ <Style Selector="RadioButton">
|
|
|
+ <Setter Property="Foreground" Value="#008080"/>
|
|
|
+ </Style>
|
|
|
+
|
|
|
+ <Style Selector="ListBox">
|
|
|
+ <Setter Property="Background" Value="#F0FFFF"/>
|
|
|
+ <Setter Property="BorderBrush" Value="#00CED1"/>
|
|
|
+ <Setter Property="BorderThickness" Value="2"/>
|
|
|
+ </Style>
|
|
|
+
|
|
|
+ <Style Selector="Border">
|
|
|
+ <Setter Property="BorderBrush" Value="#00CED1"/>
|
|
|
+ <Setter Property="BorderThickness" Value="2"/>
|
|
|
+ <Setter Property="CornerRadius" Value="5"/>
|
|
|
+ </Style>
|
|
|
+
|
|
|
+ <Style Selector="RadioButton">
|
|
|
+ <Setter Property="Foreground" Value="#008080"/>
|
|
|
+ <Setter Property="FontSize" Value="16"/>
|
|
|
+ <Setter Property="Margin" Value="0,5,0,5"/>
|
|
|
+ </Style>
|
|
|
+
|
|
|
+ <Style Selector="RadioButton:hover">
|
|
|
+ <Setter Property="Foreground" Value="#00CED1"/>
|
|
|
+ </Style>
|
|
|
+
|
|
|
+ <Style Selector="RadioButton:checked">
|
|
|
+ <Setter Property="Foreground" Value="#00CED1"/>
|
|
|
+ </Style>
|
|
|
+</Styles>
|