@fluentui/azure-themes
v8.6.110
Published
Azure themes for Fluent UI React
Downloads
14,502
Maintainers
Keywords
Readme
@fluentui/azure-themes
Azure theme for Fluent UI React (formerly Office UI Fabric React)
The Azure themes require the following import statements:
import {
AzureThemeLight,
AzureThemeDark,
AzureThemeHighContrastLight,
AzureThemeHighContrastDark,
} from '@fluentui/azure-themes';
In case of applying theme using ThemeProvider
:
import { ThemeProvider } from '@fluentui/react';
const theme = AzureThemeDark; // or alternatively AzureThemeLight
<ThemeProvider theme={theme}>
<div>{child component}</div>
</ThemeProvider>