Loading...
Loading...
Customize and apply Syncfusion Blazor themes — Theme Studio color customization, CSS/SCSS integration, lightweight themes, component filtering, and Sass variable overrides
npx skill4agent add syncfusion/blazor-ui-components-skills syncfusion-blazor-themes@usesettings.jsonsyncfusion-blazor-commonsyncfusion-blazor-commonsyncfusion-blazor-security| Theme | Description |
|---|---|
| Material 3 | Google Material Design 3 (recommended default) |
| Bootstrap 5 | Bootstrap 5 design system |
| Fluent / Fluent 2 | Microsoft Fluent Design System |
| Tailwind CSS | Tailwind CSS design tokens |
| Bootstrap 4 | Bootstrap 4 design system |
| Material | Original Material Design |
| High Contrast | WCAG-compliant accessible theme |
Lightweight variants (e.g.,) exclude web fonts — ideal for offline or bandwidth-constrained environments.fluent2-lite.css
<head>~/Components/App.razor<link href="_content/Syncfusion.Blazor.Themes/material3.css" rel="stylesheet" /><head>wwwroot/index.html<link href="_content/Syncfusion.Blazor.Themes/material3.css" rel="stylesheet" />⚠️ Important: Only reference one Syncfusion base theme at a time to avoid style conflicts.
.css.scsssettings.json~/wwwroot/styles/settings.json/* Custom.scss */
:root {
--color-primary-override: 54, 34, 89;
}
@use 'material3.scss' with (
$primary: var(#{--color-primary-override})
);