21 lines
419 B
JavaScript
21 lines
419 B
JavaScript
const lineHeightComputed = '1rem';
|
|
const lineHeightBase = '1.25';
|
|
const fontSizeBase = '1rem';
|
|
const fontSizeSmall = '0.875rem';
|
|
const fontSizeSmaller = '.75rem';
|
|
const fontSizeXS = '.575rem';
|
|
const fontSizeLarge = '1.25rem';
|
|
|
|
const headingsFontWeight = '500';
|
|
|
|
export {
|
|
lineHeightComputed,
|
|
lineHeightBase,
|
|
fontSizeBase,
|
|
fontSizeSmall,
|
|
fontSizeSmaller,
|
|
fontSizeXS,
|
|
fontSizeLarge,
|
|
headingsFontWeight,
|
|
};
|