Converts Hex Colors to Tailwind CSS Color Names.
You can learn more about the reasoning behind creating this package in my blog post Here
npm i hex2tailwind
const Hex2tailwind = require('hex2tailwind');
const hexColor = '#33ccff';
const tailwindClass = Hex2tailwind(hexColor);
console.log(tailwindClass); // Outputs: "sky-500"
This package is licensed under the MIT License