24 lines
1.0 KiB
XML
24 lines
1.0 KiB
XML
<Application xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:LoraGamepad"
|
|
x:Class="LoraGamepad.App">
|
|
<Application.DataTemplates>
|
|
<local:ViewLocator/>
|
|
</Application.DataTemplates>
|
|
|
|
<Application.Styles>
|
|
<FluentTheme Mode="Light"/>
|
|
</Application.Styles>
|
|
|
|
<Application.Resources>
|
|
<SolidColorBrush x:Key="BrightGrayBrush">#474445</SolidColorBrush>
|
|
<SolidColorBrush x:Key="MediumGrayBrush">#3b393a</SolidColorBrush>
|
|
<SolidColorBrush x:Key="ComboGrayBrush">#3a3a3a</SolidColorBrush>
|
|
<SolidColorBrush x:Key="DarkGrayBrush">#222121</SolidColorBrush>
|
|
<SolidColorBrush x:Key="DarkBlueBrush">#0865b1</SolidColorBrush>
|
|
<SolidColorBrush x:Key="BrightBlueBrush">#0f88eb</SolidColorBrush>
|
|
<SolidColorBrush x:Key="BrightRedBrush">#ef2244</SolidColorBrush>
|
|
<SolidColorBrush x:Key="DarkRedBrush">#c71e3a</SolidColorBrush>
|
|
</Application.Resources>
|
|
</Application>
|