huez
v1.1.1
Published
Automatic UI Color Palette Generator from a Base Color
Downloads
16
Readme
Huez
Automatic UI Color Palette Generator from a Base Color
Installation
npm install huez
Usage
import { huez } from "huez";
const baseColor = "#0077cc";
const colorFormat = "hex"; // "hsl", "rgb", or "hex"
try {
const palette = huez(baseColor, colorFormat);
} catch (error) {
console.error(error.message);
}