Skip to content

isabellymonteiro/rgb-hex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

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 }

Releases

No releases published

Packages

No packages published