mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
20 lines
420 B
JavaScript
20 lines
420 B
JavaScript
import Typography from 'typography';
|
|
|
|
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);
|
|
|
|
export default typography;
|