An open API service indexing awesome lists of open source software.

https://github.com/catdad-experiments/pantone-table


https://github.com/catdad-experiments/pantone-table

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# pantone-table

## Usage

```js
import * as colors from 'pantone-table';

console.log(colors.pantone_100_c); // '#f6eb61'
```

```js
const colors = require('pantone-table');

console.log(colors.pantone_100_c); // '#f6eb61'
```

You can also import only some colors:

```js
import { pantone_100_c, pantone_7407_c } from 'pantone-table';
```