@hhgtech/hhg-components
Version:
Hello Health Group common components
21 lines (20 loc) • 787 B
TypeScript
import { MantineThemeOverride } from '@mantine/core';
import { LOCALE } from "../../../interfaces/types";
export type TextSize = 'lg' | 'md' | 'base' | 'sm' | 'xs' | 's1' | 's2' | 's3' | 's4' | 's5' | 'p1' | 'p2' | 'p3' | 'p4' | 'p5' | 'c1' | 'c2' | 'n1' | 'label1' | 'label2' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
export declare const themeColors: {
hb: string[];
mb: string[];
blue: string[];
gray: string[];
delftGray: string[];
neutral: string[];
green: string[];
pink: string[];
violet: string[];
yellow: string[];
teal: string[];
indigol: string[];
red: string[];
redViolet: string[];
};
export declare const getMantineThemeOverride: (locale: LOCALE, template?: 'hb' | 'mb') => MantineThemeOverride;