@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
12 lines (11 loc) • 754 B
TypeScript
import { ColorDefinition, ThemeDefinitionV2 } from "./ThemeDefinitionV2";
import { TypographyType } from "./TypographyDefinition";
export declare const useThemeMethods: (themedefinition: ThemeDefinitionV2) => {
colorSchema: (colorSchemaType: string) => import("./ThemeDefinitionV2").ColorSchema;
typography: (typographyType: string) => TypographyType;
color: (colorSchemaType: string, colorType: string) => string;
colorDefinition: (colorSchemaType: string, colorType: string) => ColorDefinition;
complementaryColorType: (colorType: string) => string;
complementaryColor: (colorSchemaType: string, colorType: string) => string;
complementaryColorDefinition: (colorSchemaType: string, colorType: string) => ColorDefinition;
};