1.2.0 • Published 1 year ago

palette-to-rgba v1.2.0

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

hex-to-rgba

A npm package to convert a hex code to rgba

Installation

npm i palette-to-rgba

Usage

// Import the object
import palette from "palette-to-rgba";

// Call the function
palette.hexToRgba('FFF');

// output: 
// 'rgba(255, 255, 255, 1)'

Test

Color Utils
    hexToRgba()
      ✔ should convert #FFFFFF to rgba(255, 255, 255, 1)
      ✔ should handle shorthand hex codes like #FFF
      ✔ should handle hex codes without hash like "FFF"
Invalid hex color format.
      ✔ should return black for invalid hex codes
      ✔ should handle alpha values correctly
      ✔ should default to alpha 1 if not specified
      ✔ should process lowercase hex codes correctly
Invalid hex color format.
      ✔ should return black for empty strings
      ✔ should handle whitespace in input


  9 passing (44ms)
1.2.0

1 year ago

1.1.0

1 year ago

1.0.0

1 year ago