@finbertmds/fuselage-tokens
Version:
Design tokens for Fuselage, Rocket.Chat's design system
80 lines (47 loc) • 2.1 kB
Markdown
<!--header-->
<p align="center">
<a href="https://rocket.chat" title="Rocket.Chat">
<img src="https://github.com/RocketChat/Rocket.Chat.Artwork/raw/master/Logos/2020/png/logo-horizontal-red.png" alt="Rocket.Chat" />
</a>
</p>
# `@rocket.chat/fuselage-tokens`
> Design tokens for Fuselage, Rocket.Chat's design system
---
[](https://www.npmjs.com/package/@rocket.chat/fuselage-tokens/v/latest) [](https://www.npmjs.com/package/@rocket.chat/fuselage-tokens/v/next)  
 
<!--/header-->
## Install
<!--install-->
Add `@rocket.chat/fuselage-tokens` as a dependency:
```sh
npm i @rocket.chat/fuselage-tokens
# or, if you are using yarn:
yarn add @rocket.chat/fuselage-tokens
```
<!--/install-->
## Contributing
<!--contributing(msg)-->
Contributions, issues, and feature requests are welcome!<br />
Feel free to check the [issues](https://github.com/RocketChat/fuselage/issues).
<!--/contributing(msg)-->
### Building
As this package dependends on others in this monorepo, before anything run the following at the root directory:
<!--yarn(build)-->
```sh
yarn build
```
<!--/yarn(build)-->
### Linting
To ensure the source is matching our coding style, we perform [linting](<https://en.wikipedia.org/wiki/Lint_(software)>).
Before commiting, check if your code fits our style by running:
<!--yarn(lint)-->
```sh
yarn lint
```
<!--/yarn(lint)-->
Some linter warnings and errors can be automatically fixed:
<!--yarn(lint-and-fix)-->
```sh
yarn lint-and-fix
```
<!--/yarn(lint-and-fix)-->