9 lines
167 B
JavaScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
/* IMPORT */
import change from './change.js';
/* MAIN */
const grayscale = (color) => {
return change(color, { s: 0 });
};
/* EXPORT */
export default grayscale;