README.md
June 25, 2026 ยท View on GitHub
Custom Avalonia Themes developed by Devolutions
WinUI Theme [Work in Progress ๐ง]
This theme is based on Avalonia.Themes.Fluent as fallback for controls not explicitly overridden yet.
Installation
Install the Devolutions.AvaloniaTheme.WinUI package via NuGet:
Install-Package Devolutions.AvaloniaTheme.WinUI
or .NET
dotnet add package Devolutions.AvaloniaTheme.WinUI
In your App.axaml, replace the existing theme (e.g. <FluentTheme />) with:
<Application ...>
<Application.Styles>
<DevolutionsWinUiTheme />
</Application.Styles>
</Application>
To opt out of global styles:
<DevolutionsWinUiTheme GlobalStyles="False" />