Update wip website

This commit is contained in:
Niklas von Hertzen
2017-12-10 16:43:34 +08:00
parent 9bc0fb0bd1
commit 8fd616aed2
23 changed files with 7746 additions and 658 deletions

View File

@ -1,6 +1,20 @@
import Typography from 'typography';
import githubTheme from 'typography-theme-github';
const typography = new Typography(githubTheme);
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;