Skip to content

Instantly share code, notes, and snippets.

@JonathanZWhite
Last active April 23, 2017 20:42
Show Gist options
  • Save JonathanZWhite/b729b9ec18c94fa0fa53f34faaff7fdd to your computer and use it in GitHub Desktop.
Save JonathanZWhite/b729b9ec18c94fa0fa53f34faaff7fdd to your computer and use it in GitHub Desktop.
export const fontSize = {
// heading
displayLarge: '32px',
displayMedium: '26px',
displaySmall: '20px',
heading: '18px',
subheading: '16px',
// body
body: '17px',
caption: '15px',
};
export const fontWeight = {
bold: 700,
semibold: 600,
normal: 400,
light: 200,
};
export const tagMapping = {
h1: 'displayLarge',
h2: 'displayMedium',
h3: 'displaySmall',
h4: 'heading',
h5: 'subheading',
};
export const lineHeight = {
// heading
displayLarge: '48px',
displayMedium: '48px',
displaySmall: '24px',
heading: '24px',
subheading: '24px',
// body
body: '24px',
caption: '24px',
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment