joyent-portal/packages/ui-toolkit/src/text
Sara Vieira 98166047fd feat(my-joy-beta): create instane page starter 2018-01-08 19:16:12 +00:00
..
__tests__ feat(my-joy-beta): create instane page starter 2018-01-08 19:16:12 +00:00
Readme.md docs(ui-toolkit): updated typography docs 2018-01-03 14:28:44 +00:00
headings.js feat(my-joy-beta): create instane page starter 2018-01-08 19:16:12 +00:00
index.js test(ui-toolkit): initial tests 2017-12-22 01:08:27 +00:00
p.js refactor(ui-toolkit): use currentcolor to fallback to color definition 2017-12-18 15:40:31 +00:00
small.js feat(ui-toolkit): a more reusable ui-toolkit 2017-12-15 15:23:38 +00:00

Readme.md

Large Type Scale

const React = require('react');
const H1 = require('/').H1;
const H2 = require('/').H2;
const H3 = require('/').H3;
const H4 = require('/').H4;
const P = require('/').P;
const Small = require('/').Small;

const styles = {
  color: '#979797',
  marginBottom: '22px',
  display: 'block',
  marginTop: '6px',
  padding: 0
};

<div>
  <H1>H1 - Dont say it, shout it</H1>
  <Small style={styles}>Libre Franklin Regular - 36px with 45px leading</Small>
  <H2>H2 - Breadcrumb? More like breadloaf</H2>
  <Small style={styles}>Libre Franklin Regular - 24px with 30px leading</Small>
  <H3>H3 - Your friendly neighborhood workhorse</H3>
  <Small style={styles}>Libre Franklin Regular - 21px with 26px leading</Small>
  <H4>H4 - Body's bigger brother</H4>
  <Small style={styles}>Libre Franklin Semibold - 15px with 24px leading</Small>
  <P>P - Body copy</P>
  <Small style={styles}>Libre Franklin Regular - 15px with 24px leading</Small>
  <Small> C - Caption text</Small>
  <Small style={styles}>Libre Franklin Regular - 13px with 18px leading</Small>
</div>;