hex-argb-converter
v0.0.1
Published
You can convert hex color to argb number and convert argb number to hex color
Maintainers
Readme
You can convert hex color to argb number and convert argb number to hex color
// install with npm
npm install hex-argb-converterUsage
import { hexToArgb, argbToHex } from "hex-argb-converter";
//Generate
hexToArgb("#ba1a1a"); // 4290386458
argbToHex(4290386458); // "#ba1a1a"Features
- Very fast
- Very easy
