2026-05-31 13:54:31 +02:00

9 lines
167 B
JavaScript

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