Skip to content
On this page

What is Unhex 🎨

A NodeJS package to convert any RGB color to HEX, HSL color or viceversa.

WARNING

Unhex is currently in a very early status. It is already suitable for conversions between RGB, HEX and HSL.

Example 👇

css
div {
   color: #fff;
   background-color: #0070f3;
}

After running npx unhex@latest with hexToRgb direction.

css
div {
   color: rgb(255, 255, 255);
   background-color: rgb(0, 112, 243);
}

Want to try it? 🚀

shell
npx unhex@latest