Helper funtions for color usage in js.
npm install js-colorize
or
yarn add js-colorize
import { hexWithAlpha } from "js-colorize";
// ...
var convertedColor = hexWithAlpha("#ffffff", 0.3);
// 'rgba(255, 255, 255, 0.3)'
Usage | Hex | Alpha | Result |
---|---|---|---|
hexWithAlpha("#0a192f", 0.3) |
#0a192f | 0.3 | "rgba(10, 47, 25, 0.3)" |
hexWithAlpha("#fac300", 0.7) |
#fac300 | 0.7 | "rgba(250, 0, 195, 0.7)" |
- Muhammed Deniz.