@atlaskit/theme
Version:
Theme contains solutions for global theming, colors, and other useful mixins.
25 lines (24 loc) • 619 B
TypeScript
/**
* Font token fallbacks are verbose.
* This object exists purely to make using fallbacks less cumbersome while we still need to use them.
* Will be removed once fallbacks are no longer needed.
*
* This is referenced by the use-tokens-typography ESLint rule.
*/
export declare const fontFallback: {
heading: {
xxlarge: string;
xlarge: string;
large: string;
medium: string;
small: string;
xsmall: string;
xxsmall: string;
};
body: {
large: string;
medium: string;
UNSAFE_small: string;
small: string;
};
};