office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
31 lines (23 loc) • 553 B
text/typescript
import { IStyle } from '../../Styling';
export type IThemePagePalette = {
key: string;
name: string;
value: string;
description: string;
};
export interface IThemePageState {
palette: IThemePagePalette[];
semanticColors: IThemePagePalette[];
colorPickerProps?: {
targetElement: HTMLElement;
value: any;
index: number;
};
activeList?: string;
}
export interface IThemePageStyleProps {}
export interface IThemePageStyles {
colorSwatch: IStyle;
swatch: IStyle;
colorValue: IStyle;
}