html2canvas/www/src/utils/typography.js

20 lines
420 B
JavaScript
Raw Normal View History

2017-12-09 12:47:25 +03:00
import Typography from 'typography';
2017-12-10 11:43:34 +03:00
const theme = {
googleFonts: [
{
name: 'Roboto',
styles: ['100', '300', '400', '500', '700']
}
],
scale: 4.2,
baseFontSize: '14.5px',
baseLineHeight: 1.5,
headerFontFamily: ['Roboto', 'sans-serif'],
bodyFontFamily: ['Roboto', 'sans-serif']
};
const typography = new Typography(theme);
2017-12-09 12:47:25 +03:00
export default typography;