rhex
v1.0.2
Published
A tiny library to convert rgb to hex
Downloads
2
Readme
rhex
A tiny library to convert rgb to hex
Usage
Node Package
const rh = require('rhex');
console.log(rh(10,20,30));
//0a141e
Command Line
$ rh <R> <G> <B>
Examples
$ rh 10 20 30
0a141e
Inspired by javascripter