Design tokens for Protocol, Mozilla’s design system.
Перейти к файлу
Mozilla-GitHub-Standards e6276b515a Add Mozilla Code of Conduct file
Fixes #38.

_(Message COC002)_
2019-03-30 15:38:44 +00:00
gulpfile.js Update dependencies (#31) 2019-02-15 09:05:09 -08:00
tokens Update Units (#35) 2019-03-25 18:04:45 +00:00
.editorconfig Lint JS and run in CI (Fixes #2) (#8) 2018-05-16 13:39:29 -07:00
.eslintignore Lint JS and run in CI (Fixes #2) (#8) 2018-05-16 13:39:29 -07:00
.eslintrc.js Update ESLint to consume @mozilla-protocol/eslint-config (#33) 2019-02-20 00:49:26 -08:00
.gitignore Generate files from tokens (#1) 2018-05-10 15:24:43 -07:00
.travis.yml Update dependencies (#31) 2019-02-15 09:05:09 -08:00
CHANGELOG.md Bump version to 3.0.0 2019-03-25 18:09:51 +00:00
CODE_OF_CONDUCT.md Add Mozilla Code of Conduct file 2019-03-30 15:38:44 +00:00
CONTRIBUTING.md Generate files from tokens (#1) 2018-05-10 15:24:43 -07:00
LICENSE Initial commit 2018-05-10 10:44:34 -07:00
README.md Bump version to 3.0.0 2019-03-25 18:09:51 +00:00
package-lock.json Bump version to 3.0.0 2019-03-25 18:09:51 +00:00
package.json Bump version to 3.0.0 2019-03-25 18:09:51 +00:00
stylelint.config.js Update dependencies (#31) 2019-02-15 09:05:09 -08:00

README.md

Protocol Tokens

Design tokens for Protocol, Mozillas design system.

JavaScript · JSON · CSS · SCSS


Information

Package@mozilla-protocol/tokens
Description Design tokens for Protocol, Mozillas design system
Version 3.0.0

Installation

Protocol design tokens are available as an npm package (@mozilla-protocol/tokens) on npm.

The recommended way to use and install design tokens may vary depending on your project; the most common are documented below.

JavaScript package installation

Using npm:

npm install @mozilla-protocol/tokens --save

Using yarn:

yarn add @mozilla-protocol/tokens

JavaScript

In JavaScript, design token names are formatted in lower camelCase.

const tokens = require('@mozilla-protocol/tokens/dist/index');
console.log(tokens.colorBlueLighter); // rgb(0, 0, 0)

In JSON, design token names are formatted in kebab-case.

const tokens = require('@mozilla-protocol/tokens/dist/index.json');
console.log(tokens['color-black']); // rgb(0, 0, 0)

Sass

Sass variables and map keys are formatted in kebab-case.

// Using variables
@import '~@mozilla-protocol/tokens/dist/index';

a {
  color: $color-black;
}

Sass, with CSS Custom Properties

Custom properties are formatted in kebab-case.

// Omit .css at the end of the file
@import '~@mozilla-protocol/tokens/dist/colors/colors.custom-properties';

a {
  color: var(--color-black);
}

Contributing

Code of conduct

We have a code of conduct, please follow it in all your interactions with the project.

Contributing guide

Read the contributing guide to learn how to propose changes and understand our development process.

License

The protocol-tokens project is available under the MPL-2.0.