Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bahamas10/node-ryb2rgb
Convert colors in JavaScript from ryb to rgb
https://github.com/bahamas10/node-ryb2rgb
Last synced: about 2 months ago
JSON representation
Convert colors in JavaScript from ryb to rgb
- Host: GitHub
- URL: https://github.com/bahamas10/node-ryb2rgb
- Owner: bahamas10
- Created: 2013-03-02T00:53:22.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-03-02T00:57:20.000Z (almost 12 years ago)
- Last Synced: 2024-04-13T22:33:24.903Z (8 months ago)
- Language: JavaScript
- Size: 109 KB
- Stars: 15
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
ryb2rgb
=======Convert colors in JavaScript from ryb to rgb
Example
-------### ryb2rgb
``` js
var ryb2rgb = require('ryb2rgb');
console.log(ryb2rgb([0, 255, 0]));
```yields
``` js
[255, 255, 0]
```Usage
-----``` js
var ryb2rgb = require('ryb2rgb');
```or
``` html
// defines ryb2rgb()
```Installation
------------npm install ryb2rgb
Credits
-------Original code https://www.paintassistant.com/rybrgb.html
Made generic for the web and Node.js
License
-------MIT