Mirror: 馃帺 A tiny but capable push & pull stream library for TypeScript and Flow
1import Typography from 'typography'; 2import * as theme from './theme'; 3 4const typography = new Typography({ 5 includeNormalize: false, 6 baseFontSize: '18px', 7 baseLineHeight: 1.5, 8 scaleRatio: 46 / 18, 9 headerFontFamily: theme.fonts.header, 10 headerWeight: '500', 11 bodyFontFamily: theme.fonts.body, 12 bodyWeight: '400' 13}); 14 15export default typography;