newcolorgen
v1.0.0
Published
A package for generating color palettes.
Downloads
3
Readme
newcolorgen
A package for generating color palettes.
Installation
You can install newcolorgen
via npm:
npm install newcolorgen
Usage
const generatePalette = require('newcolorgen');
// Example usage
const baseColor = '#3498db'; // Base color in hex format
const numColors = 5; // Number of colors in the palette
const colorPalette = generatePalette(baseColor, numColors);
console.log('Generated Color Palette:', colorPalette);
License
This package is open source and available under the MIT License.