UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

13 lines (12 loc) 366 B
import { IColor } from '../../utilities/color/colors'; import { Shade } from '../../utilities/color/shades'; export interface IThemeSlotRule { name: string; color?: IColor; value?: string; inherits?: IThemeSlotRule; asShade?: Shade; isBackgroundShade?: boolean; isCustomized?: boolean; dependentRules: IThemeSlotRule[]; }