https://github.com/catdad-experiments/pantone-table
https://github.com/catdad-experiments/pantone-table
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/catdad-experiments/pantone-table
- Owner: catdad-experiments
- License: mit
- Created: 2021-09-13T23:21:18.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-15T11:49:31.000Z (over 4 years ago)
- Last Synced: 2025-03-18T11:11:22.244Z (about 1 year ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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';
```