25 lines
903 B
XML
25 lines
903 B
XML
<Application xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="Demo2.App"
|
|
RequestedThemeVariant="Default">
|
|
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
|
|
|
|
<Application.Styles>
|
|
<FluentTheme />
|
|
<StyleInclude Source="avares://Avalonia.Controls.ColorPicker/Themes/Simple/Simple.xaml" />
|
|
<Style Selector="ComboBox">
|
|
<Setter Property="Margin" Value="5"/>
|
|
<Setter Property="Background" Value="#ffffe1"/>
|
|
</Style>
|
|
<Style Selector="Button">
|
|
<Setter Property="Margin" Value="5"/>
|
|
<Setter Property="Background" Value="#ff9c1a"/>
|
|
</Style>
|
|
<Style Selector="TextBox">
|
|
<Setter Property="Margin" Value="5"/>
|
|
<Setter Property="Background" Value="#ffffe1"/>
|
|
</Style>
|
|
</Application.Styles>
|
|
|
|
|
|
</Application> |