@volue/design-typography
Typography primitives/tokens to be used across Volue's products
Installation
npm install @volue/design-typography --save
yarn add @volue/design-typography
Usage
JavaScript
In JavaScript, design token names are formatted in lower camelCase.
Tokens are exported as nested object structure.
const tokens = require('@volue/design-typography');
console.log(tokens.font.family.display);
In JSON, design token names are formatted in SNAKE_CASE.
const tokens = require('@volue/design-typography/dist/index.json');
console.log(tokens['FONT_FAMILY_DISPLAY']);
Sass
Sass variables and map keys are formatted in kebab-case.
@import '~@volue/design-typography/dist/index';
h1 {
font-family: $font-family-display;
font-size: $size-font-alpha;
}