2026-06-11 10:47:52 +02:00
|
|
|
<Application xmlns="https://github.com/avaloniaui"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
x:Class="PalladiumWallet.App.App"
|
|
|
|
|
xmlns:local="using:PalladiumWallet.App"
|
|
|
|
|
RequestedThemeVariant="Default">
|
|
|
|
|
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
|
|
|
|
|
|
|
|
|
|
<Application.DataTemplates>
|
|
|
|
|
<local:ViewLocator/>
|
|
|
|
|
</Application.DataTemplates>
|
2026-06-16 10:08:35 +02:00
|
|
|
|
2026-06-16 14:40:06 +02:00
|
|
|
<!-- Semantic design tokens (colors, radii, brand accent): defined for
|
|
|
|
|
both light/dark variants. See Styles/Theme.axaml. -->
|
2026-06-16 10:08:35 +02:00
|
|
|
<Application.Resources>
|
|
|
|
|
<ResourceDictionary>
|
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
|
|
|
|
<ResourceInclude Source="/Styles/Theme.axaml"/>
|
|
|
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
|
</ResourceDictionary>
|
|
|
|
|
</Application.Resources>
|
|
|
|
|
|
2026-06-11 10:47:52 +02:00
|
|
|
<Application.Styles>
|
|
|
|
|
<FluentTheme />
|
2026-06-16 14:40:06 +02:00
|
|
|
<!-- Control refinements and reusable classes (on top of Fluent) -->
|
2026-06-16 10:08:35 +02:00
|
|
|
<StyleInclude Source="/Styles/Controls.axaml"/>
|
2026-06-11 10:47:52 +02:00
|
|
|
</Application.Styles>
|
|
|
|
|
</Application>
|