UNPKG

colour-swapper

Version:

colour-swapper is a compact and efficient JavaScript library designed for color manipulation and conversion

9 lines (8 loc) 283 B
/** * Converts a color to its grayscale equivalent. * * @param color The color to be converted to grayscale in any valid CSS color format. * @returns The hexadecimal string of the grayscale color. */ declare const grayscale: (color: string) => string; export default grayscale;