@fluentui/scheme-utilities
TypeScript icon, indicating that this package has built-in type declarations

8.3.47 • Public • Published

@fluentui/scheme-utilities

Theme variant generator for Fluent UI React (formerly Office UI Fabric React)

Variants are themes generated from an existing theme, as opposed to from raw colors. A variant will share the same colors as the original theme it was generated from, but will use those colors differently. For example, the background color and text color might be swapped. Variants can be used to highlight or de-emphasize portions of the page.

Example of normal, soft, and strong variants:

example of variants

This project provides helper functions to create variants of a given theme, which can be used with the ThemeProvider component to theme a specific portion of the page. Each function takes in an IPartialTheme and returns an ITheme.

The following example creates a strong variant of a given theme, and applies that strong variant to the components wrapped by ThemeProvider.

import { FluentTheme } from '@fluentui/theme';
import { getStrongVariant } from '@fluentui/theme-schemes';

const strongTheme = getStrongVariant(FluentTheme);

<ThemeProvider theme={strongTheme}>
  <components... />
</ThemeProvider>

The available variants are:

  • getNeutralVariant(theme: IPartialTheme): ITheme
    • Neutral - a soft neutral color is used as the background (light gray in the default theme), most other colors are changed very little or not at all
  • getSoftVariant(theme: IPartialTheme): ITheme
    • Soft - a soft shade of the primary color is used as the background (light blue in the default theme), most other colors are changed very little or not at all, but input controls look different
  • getStrongVariant(theme: IPartialTheme): ITheme
    • Strong - a strong shade of the primary color is used as the background (blue in the default theme), almost all colors are changed

Readme

Keywords

none

Package Sidebar

Install

npm i @fluentui/scheme-utilities

Weekly Downloads

8,351

Version

8.3.47

License

MIT

Unpacked Size

376 kB

Total Files

54

Last publish

Collaborators

  • sopranopillow
  • microsoft1es
  • justslone
  • chrisdholt
  • miroslavstastny
  • levithomason
  • uifabricteam
  • uifrnbot
  • dzearing
  • layershifter
  • ling1726
  • travisspomer