FluentTheme in AvaloniaThis reference lane covers how to build Fluent-inspired Avalonia apps with:
FluentTheme bootstrap and density control,ColorPaletteResources,Coverage intent for this lane:
11.3.12,FluentTheme as the baseline instead of reinventing a parallel design system,FluentTheme, theme variants, and density.FluentTheme.Palettes only for palette-level decisions.SystemAccent*, SystemBase*, and SystemChrome* resources.All detailed Fluent references now live under fluent-design/README.md:
00-fluent-theme-bootstrap-density-and-palette-customization.md01-fluent-alias-tokens-brand-mapping-materials-and-elevation.md02-fluent-typography-layout-shape-and-iconography.md03-fluent-controls-navigation-and-command-surfaces.md04-fluent-shells-dialogs-window-chrome-and-transient-surfaces.md05-fluent-motion-content-wait-ux-and-accessibility-recipes.md06-fluent-language-system-content-commanding-and-teaching-patterns.md07-fluent-motion-composition-and-depth-recipes.md08-fluent-navigation-information-architecture-and-productivity-shells.md09-fluent-language-system-status-confirmation-and-notification-patterns.md10-fluent-advanced-composition-implicit-expression-and-shell-choreography.md11-fluent-localization-bidi-and-inclusive-content-patterns.md12-fluent-touch-gesture-posture-and-motion-feedback.md13-fluent-icons-public-icon-sets-selection-and-avalonia-usage.mdFor exhaustive lookup beyond these Fluent-specific docs:
04-styles-themes-resources.md, 17-resources-assets-theme-variants-and-xmlns.md10-templated-controls-and-control-themes.md13-windowing-and-custom-decorations.md, 48-toplevel-window-and-runtime-services.md25-popups-flyouts-tooltips-and-overlays.md, 53-menu-controls-contextmenu-and-menuflyout-patterns.md35-path-icons-and-vector-geometry-assets.md, 59-media-colors-brushes-and-formatted-text-practical-usage.md13-fluent-icons-public-icon-sets-selection-and-avalonia-usage.md, 48-toplevel-window-and-runtime-services.md, 53-menu-controls-contextmenu-and-menuflyout-patterns.md, 55-tray-icons-and-system-tray-integration.mdapi-index-generated.md<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
RequestedThemeVariant="Default">
<Application.Styles>
<FluentTheme DensityStyle="Compact">
<FluentTheme.Palettes>
<ColorPaletteResources x:Key="Light"
Accent="#0F6CBD"
RegionColor="#FFFFFFFF" />
<ColorPaletteResources x:Key="Dark"
Accent="#4CC2FF"
RegionColor="#FF111111" />
</FluentTheme.Palettes>
</FluentTheme>
</Application.Styles>
</Application>
FluentTheme setup in compiled XAML by default.Accent as the main live palette override path; broader palette changes should be validated carefully.System* resource names.FluentTheme API: api-docs.avaloniaui.net/docs/T_Avalonia_Themes_Fluent_FluentThemeColorPaletteResources API: api-docs.avaloniaui.net/docs/T_Avalonia_Themes_Fluent_ColorPaletteResourcesCompositor API: api-docs.avaloniaui.net/docs/T_Avalonia_Rendering_Composition_Compositor