Files
NebulaLauncher/Nebula.Launcher/App.axaml

67 lines
2.5 KiB
Plaintext
Raw Normal View History

2024-12-21 13:11:30 +03:00
<Application
RequestedThemeVariant="Default"
x:Class="Nebula.Launcher.App"
xmlns="https://github.com/avaloniaui"
xmlns:local="using:Nebula.Launcher"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
2024-12-18 12:37:00 +03:00
<Application.DataTemplates>
2024-12-21 13:11:30 +03:00
<local:ViewLocator />
2024-12-18 12:37:00 +03:00
</Application.DataTemplates>
2024-12-21 13:11:30 +03:00
2024-12-18 12:37:00 +03:00
<Application.Styles>
2024-12-21 13:11:30 +03:00
<FluentTheme />
2024-12-18 12:37:00 +03:00
<Style Selector="Window">
2024-12-21 13:11:30 +03:00
<Setter Property="Background" Value="#121212" />
2024-12-18 12:37:00 +03:00
</Style>
<Style Selector="Border">
2024-12-21 13:11:30 +03:00
<Setter Property="BorderBrush" Value="#343334" />
<Setter Property="Background" Value="#222222" />
<Setter Property="BorderThickness" Value="0" />
2024-12-18 12:37:00 +03:00
</Style>
2024-12-21 13:11:30 +03:00
<Style Selector="Label">
<Setter Property="Foreground" Value="#f7f7ff" />
2024-12-19 12:46:22 +03:00
</Style>
2024-12-21 13:11:30 +03:00
2024-12-19 12:46:22 +03:00
<Style Selector="Button">
2024-12-21 13:11:30 +03:00
<Setter Property="BorderBrush" Value="#343334" />
<Setter Property="BorderThickness" Value="0" />
<Setter Property="Padding" Value="5" />
<Setter Property="CornerRadius" Value="10" />
2024-12-19 12:46:22 +03:00
</Style>
2024-12-21 13:11:30 +03:00
2024-12-19 12:46:22 +03:00
<Style Selector="Button:pressed">
2024-12-21 13:11:30 +03:00
<Setter Property="RenderTransform" Value="{x:Null}" />
</Style>
<Style Selector="Border.ButtonBack">
<Setter Property="Background" Value="#e63462" />
<Setter Property="CornerRadius" Value="0,0,10,0" />
2024-12-18 12:37:00 +03:00
</Style>
2024-12-21 13:11:30 +03:00
2024-12-18 12:37:00 +03:00
<Style Selector="Button.ViewSelectButton">
2024-12-21 13:11:30 +03:00
<Setter Property="CornerRadius" Value="0,8,8,0" />
<Setter Property="Margin" Value="0,0,0,5" />
<Setter Property="Padding" Value="8" />
<Setter Property="Background" Value="#00000000" />
2024-12-18 12:37:00 +03:00
</Style>
2024-12-21 13:11:30 +03:00
2024-12-18 12:37:00 +03:00
<Style Selector="Button.ViewSelectButton:pressed">
2024-12-21 13:11:30 +03:00
<Setter Property="BorderThickness" Value="0,0,0,0" />
</Style>
<Style Selector="TextBox">
<Setter Property="Foreground" Value="#f7f7ff" />
<Setter Property="SelectionForegroundBrush" Value="#f7f7ff" />
<Setter Property="BorderThickness" Value="0,0,0,1" />
<Setter Property="BorderBrush" Value="#f7f7ff" />
2024-12-18 12:37:00 +03:00
</Style>
2024-12-21 15:15:04 +03:00
<Style Selector="ListBoxItem">
<Setter Property="CornerRadius" Value="0,8,8,0" />
<Setter Property="Margin" Value="0,0,0,5" />
<Setter Property="Padding" Value="8" />
<Setter Property="Background" Value="#00000000" />
</Style>
2024-12-18 12:37:00 +03:00
</Application.Styles>
</Application>