mirror of
https://github.com/sp-tarkov/patcher.git
synced 2025-02-12 17:30:44 -05:00
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<Application xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:PatchGenerator"
|
|
x:Class="PatchGenerator.App"
|
|
>
|
|
<Application.DataTemplates>
|
|
<local:ViewLocator/>
|
|
</Application.DataTemplates>
|
|
|
|
<Application.Styles>
|
|
<FluentTheme Mode="Light"/>
|
|
</Application.Styles>
|
|
|
|
<Application.Resources>
|
|
<!-- Colors -->
|
|
<Color x:Key="AKI_DarkGray">#121212</Color>
|
|
<Color x:Key="AKI_Yellow">#FFC107</Color>
|
|
<Color x:Key="AKI_White">#FFFFFF</Color>
|
|
<Color x:Key="AKI_Gray">#282828</Color>
|
|
<Color x:Key="AKI_DarkGrayBlue">#323947</Color>
|
|
|
|
<!-- Brushes -->
|
|
<SolidColorBrush x:Key="AKI_Foreground_Light" Color="{StaticResource AKI_White}"/>
|
|
<SolidColorBrush x:Key="AKI_Background_Light" Color="{StaticResource AKI_Gray}"/>
|
|
<SolidColorBrush x:Key="AKI_Background_Dark" Color="{StaticResource AKI_DarkGray}"/>
|
|
<SolidColorBrush x:Key="AKI_Brush_Yellow" Color="{StaticResource AKI_Yellow}"/>
|
|
<SolidColorBrush x:Key="AKI_Brush_DarkGrayBlue" Color="{StaticResource AKI_DarkGrayBlue}"/>
|
|
</Application.Resources>
|
|
</Application>
|