1.0.3 • Published 1 year ago

hex2tailwind v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

hex2tailwind

Converts Hex Colors to Tailwind CSS Color Names.

You can learn more about the reasoning behind creating this package in my blog post Here

Installation

  npm i hex2tailwind

Usage/Examples

const Hex2tailwind = require('hex2tailwind');

const hexColor = '#33ccff';
const tailwindClass = Hex2tailwind(hexColor);
console.log(tailwindClass); // Outputs: "sky-500"

License

This package is licensed under the MIT License