@isabellymonteiro/rgb-hex

1.0.2 • Public • Published

rgb-hex

Convert rgb color to hex and hex to rgb

Install

$ npm install @isabellymonteiro/rgb-hex

Usage

rgb to hex

import { rgbToHex } from '@isabellymonteiro/rgb-hex'

rgbToHex(0, 76, 153)
// '#004c99'

hex to rgb

It does not work for a shorthand hex triplet such as '#03F'.

import { hexToRgb } from '@isabellymonteiro/rgb-hex'

hexToRgb('004c99') // or hexToRgb('#004c99')
// { r: 0, g: 76, b: 153 }

Package Sidebar

Install

npm i @isabellymonteiro/rgb-hex

Weekly Downloads

0

Version

1.0.2

License

ISC

Unpacked Size

1.64 kB

Total Files

3

Last publish

Collaborators

  • isabellymonteiro