Creates shades & tints for a given HEX code.
Hexashades helps you generate a range of shades and tints for any specified RGB Hex color code.
> Currently, it only supports RGB Hex codes. More input formats will be allowed in the future.
NPM
``sh`
npm install hexashades --save
Or load using a
`
`js
// Import Hexashades & initialize.
import { Colors } from "hexashades";
const color = new Colors();
// Generate tints & shades.
const tintsAndShades = color.createColors("663399", 10, false);
`
Returns an array of tints & shades for the given color with a given percentage of increments.
Throws an error if no/invalid inputs are given.
- @param {string} color - a valid RGB hex code without #@param {number} percentage
- - a valid percentage value between 0 and 100@param {boolean} prefix
- - (Optional) true/false. Whether the output should include #@return {Array
-
MIT © arjunkdot