28 lines
1.0 KiB
XML
28 lines
1.0 KiB
XML
<Application xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="SoundTester.App"
|
|
xmlns:local="using:SoundTester"
|
|
RequestedThemeVariant="Default">
|
|
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
|
|
|
|
<Application.DataTemplates>
|
|
<local:ViewLocator/>
|
|
</Application.DataTemplates>
|
|
|
|
<Application.Styles>
|
|
<FluentTheme />
|
|
</Application.Styles>
|
|
<Application.Resources>
|
|
<ResourceDictionary x:Key="Light">
|
|
<Color x:Key="BaseHigh">#ffffff</Color>
|
|
<Color x:Key="BaseMedium">#666666</Color>
|
|
<Color x:Key="BaseLow">#2b2d30</Color>
|
|
</ResourceDictionary>
|
|
|
|
<ResourceDictionary x:Key="Dark">
|
|
<Color x:Key="BaseHigh">#2b2d30</Color>
|
|
<Color x:Key="BaseMedium">#888888</Color>
|
|
<Color x:Key="BaseLow">#ffffff</Color>
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</Application> |