AquaCare/AquaCare.View/Style.xaml
2025-06-16 22:01:13 +02:00

46 lines
1.7 KiB
XML

<Style xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<!-- Allgemeiner Button-Style -->
<Style Selector="Button">
<Setter Property="FontSize" Value="30"/>
<Setter Property="Background" Value="#808080"/>
<Setter Property="Foreground" Value="#BEBEBE"/>
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="HorizontalContentAlignment" Value="Center"/>
<Setter Property="VerticalContentAlignment" Value="Center"/>
<Setter Property="Margin" Value="5"/>
</Style>
<!-- Image Button-Style -->
<Style Selector="Button.ImageButton">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Padding" Value="0"/>
</Style>
<!-- Überschrift-TextBlock-Style -->
<Style Selector="TextBlock.ÜberschriftText">
<Setter Property="FontSize" Value="48"/>
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="Foreground" Value="White"/>
<Setter Property="HorizontalAlignment" Value="Center"/>
<Setter Property="VerticalAlignment" Value="Center"/>
<Setter Property="Margin" Value="0,20,0,20"/>
</Style>
<!-- Allgemeiner TextBlock-Style (Buttons usw.) -->
<Style Selector="TextBlock">
<Setter Property="FontSize" Value="24"/>
<Setter Property="Foreground" Value="White"/>
<Setter Property="HorizontalAlignment" Value="Center"/>
<Setter Property="VerticalAlignment" Value="Center"/>
</Style>
<!--Default Hintergrundfarbe-->
<Style Selector="Window">
<Setter Property="Background" Value="#1E1E1E"/>
</Style>
</Style>