rgb-hex
Convert RGB(A) color to HEX
npm downloads npm version npm license
rgb-hexSimilar Packages:
Npm Package Weekly Downloads Trend
3 Years
🌟 Show real-time usage chart on rgb-hex's README.md, just copy the code below.
## Usage Trend
[![Usage Trend of rgb-hex](https://npm-compare.com/img/npm-trend/THREE_YEARS/rgb-hex.png)](https://npm-compare.com/rgb-hex#timeRange=THREE_YEARS)
Cumulative GitHub Star Trend
🌟 Show GitHub stars trend chart on rgb-hex's README.md, just copy the code below.
## GitHub Stars Trend
[![GitHub Stars Trend of rgb-hex](https://npm-compare.com/img/github-trend/rgb-hex.png)](https://npm-compare.com/rgb-hex)
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
rgb-hex263,2201214.82 kB22 years agoMIT
README for rgb-hex

rgb-hex

Convert RGB(A) color to HEX

Install

$ npm install rgb-hex

Usage

import rgbHex from 'rgb-hex';

rgbHex(65, 131, 196);
//=> '4183c4'

rgbHex('rgb(40, 42, 54)');
//=> '282a36'

rgbHex(65, 131, 196, 0.2);
//=> '4183c433'

rgbHex(40, 42, 54, '75%');
//=> '282a36bf'

rgbHex('rgba(40, 42, 54, 75%)');
//=> '282a36bf'

Related