# @fluentui/fluent2-theme

**Fluent2 theme for [Fluent UI React](https://developer.microsoft.com/en-us/fluentui)**
([formerly Office UI Fabric React](https://developer.microsoft.com/en-us/office/blogs/ui-fabric-is-evolving-into-fluent-ui/))

This package provides the Fluent 2 theme for Fluent UI React 8.0.

```jsx
  import { ThemeProvider } from '@fluentui/react';
  import { Fluent2WebLightTheme, Fluent2WebDarkTheme } from '@fluentui/fluent2-theme';

  <ThemeProvider theme={Fluent2WebLightTheme}>
    <div>Light Themed</div>
  </ThemeProvider>

  <ThemeProvider theme={Fluent2WebDarkTheme}>
    <div>Dark Themed</div>
  </ThemeProvider>
```
