18 lines
862 B
XML
18 lines
862 B
XML
<Application xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:conv="using:Poe2Trade.Ui.Converters"
|
|
x:Class="Poe2Trade.Ui.App"
|
|
RequestedThemeVariant="Dark">
|
|
<Application.Styles>
|
|
<FluentTheme />
|
|
</Application.Styles>
|
|
<Application.Resources>
|
|
<conv:LogLevelToBrushConverter x:Key="LogLevelBrush" />
|
|
<conv:BoolToOccupiedBrushConverter x:Key="OccupiedBrush" />
|
|
<conv:LinkModeToColorConverter x:Key="ModeBrush" />
|
|
<conv:StatusDotBrushConverter x:Key="StatusDotBrush" />
|
|
<conv:ActiveOpacityConverter x:Key="ActiveOpacity" />
|
|
<conv:CellBorderConverter x:Key="CellBorderConverter" />
|
|
<conv:BoolToOverlayBrushConverter x:Key="OccupiedOverlayBrush" />
|
|
</Application.Resources>
|
|
</Application>
|