@barguide/style-guide
Version:
BarGuide.io | CSS Style Guide
54 lines (53 loc) • 1.22 kB
TypeScript
declare const families: {
copy: string;
heading: string;
/** @deprecated Use the "copy" option instead */
primary: string;
/** @deprecated Use the "heading" option instead */
secondary: string;
};
declare const sizes: {
'10': number;
'12': number;
'14': number;
'16': number;
'18': number;
'20': number;
'24': number;
'32': number;
'36': number;
};
declare const weights: {
light: number;
regular: number;
bold: number;
'extra-bold': number;
};
declare const font: {
family: {
copy: string;
heading: string;
/** @deprecated Use the "copy" option instead */
primary: string;
/** @deprecated Use the "heading" option instead */
secondary: string;
};
size: {
'10': number;
'12': number;
'14': number;
'16': number;
'18': number;
'20': number;
'24': number;
'32': number;
'36': number;
};
weight: {
light: number;
regular: number;
bold: number;
'extra-bold': number;
};
};
export { families, font, sizes, weights };