node-hex-to-rgb
v0.0.1
Published
Simple utility to convert HEX color codes to RGB Values
Downloads
2
Maintainers
Readme
Convert HEX to RGB
:unicorn: Simple utility to convert HEX color codes to RGB Values
:package: Requirements
Node.js 12.x LTS or 14.x LTS
:sparkles: Installation
Install the NPM Package with the below command:
npm install node-hex-to-rgb --save
(or)
Install with Yarn:
yarn add node-hex-to-rgb
:pen: Usage
Import the module in your project:
// Commonjs Import
var hexToRGB = require("node-hex-to-rgb");
// or ES6 import
import hexToRGB from "node-hex-to-rgb";
:bulb: Example
Pass the RGB value to the function
import hexToRGB from "node-hex-to-rgb";
const rgb = hexToRGB("#ff0000");
console.log(rgb);
:ballot_box_with_check: Example Output
[ { red: 255, green: 0, blue: 0 } ]
:green_heart: Message
I hope you find this useful. If you have any questions, please create an issue.