UNPKG

khroma

Version:

A collection of functions for manipulating CSS colors, inspired by SASS.

9 lines (8 loc) 167 B
/* IMPORT */ import change from './change.js'; /* MAIN */ const grayscale = (color) => { return change(color, { s: 0 }); }; /* EXPORT */ export default grayscale;