README.md

June 25, 2026 ยท View on GitHub

image

Custom Avalonia Themes developed by Devolutions

License: MIT Build Status NuGet Version NuGet Downloads

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" />