Files
infocom-systems-design/node_modules/khroma/dist/methods/complement.js
2025-10-03 22:27:28 +03:00

9 lines
191 B
JavaScript

/* IMPORT */
import adjustChannel from './adjust_channel.js';
/* MAIN */
const complement = (color) => {
return adjustChannel(color, 'h', 180);
};
/* EXPORT */
export default complement;