### You can convert hex color to argb number and convert argb number to hex color

```js
// install with npm
npm install hex-argb-converter
```

## Usage

```js
import { hexToArgb, argbToHex } from "hex-argb-converter";

//Generate
hexToArgb("#ba1a1a"); // 4290386458

argbToHex(4290386458); // "#ba1a1a"
```

## Features

- Very fast
- Very easy
