Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
The hex-rgb npm package is used to convert hexadecimal color values to RGB (Red, Green, Blue) format. This can be useful in various scenarios such as web development, graphic design, and any other field where color manipulation is required.
Convert HEX to RGB
This feature allows you to convert a hexadecimal color code to its RGB representation. The output is an object containing the red, green, blue, and alpha (opacity) values.
const hexRgb = require('hex-rgb');
const rgb = hexRgb('#ff0000');
console.log(rgb); // { red: 255, green: 0, blue: 0, alpha: 1 }
Convert HEX to RGB with Alpha
This feature allows you to convert a hexadecimal color code that includes an alpha (opacity) value to its RGBA representation. The output is an object containing the red, green, blue, and alpha values.
const hexRgb = require('hex-rgb');
const rgba = hexRgb('#ff000080');
console.log(rgba); // { red: 255, green: 0, blue: 0, alpha: 0.5 }
Convert Short HEX to RGB
This feature allows you to convert a short hexadecimal color code (3 characters) to its RGB representation. The output is an object containing the red, green, blue, and alpha values.
const hexRgb = require('hex-rgb');
const rgb = hexRgb('#f00');
console.log(rgb); // { red: 255, green: 0, blue: 0, alpha: 1 }
The 'color' package provides a wide range of color manipulation functionalities, including conversion between different color formats (HEX, RGB, HSL, etc.), color mixing, and more. It is more feature-rich compared to hex-rgb.
The 'tinycolor2' package is another versatile color manipulation library that supports conversion between various color formats, color mixing, and color modification (lightening, darkening, etc.). It offers more functionalities than hex-rgb.
The 'chroma-js' package is a powerful library for color conversions and color scales. It supports a wide range of color formats and provides advanced features like color interpolation and color scales, making it more comprehensive than hex-rgb.
Convert HEX color to RGBA
$ npm install hex-rgb
const hexRgb = require('hex-rgb');
hexRgb('4183c4');
//=> {red: 65, green: 131, blue: 196, alpha: 1}
hexRgb('#4183c4');
//=> {red: 65, green: 131, blue: 196, alpha: 1}
hexRgb('#fff');
//=> {red: 255, green: 255, blue: 255, alpha: 1}
hexRgb('#22222299');
//=> {red: 34, green: 34, blue: 34, alpha: 0.6}
hexRgb('#0006');
//=> {red: 0, green: 0, blue: 0, alpha: 0.4}
hexRgb('#cd2222cc');
//=> {red: 205, green: 34, blue: 34, alpha: 0.8}
hexRgb('#cd2222cc', {format: 'array'});
//=> [205, 34, 34, 0.8]
See rgb-hex for the inverse.
MIT © Sindre Sorhus
FAQs
Convert HEX color to RGBA
The npm package hex-rgb receives a total of 204,624 weekly downloads. As such, hex-rgb popularity was classified as popular.
We found that hex-rgb demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.