mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-23 06:11:52 +02:00
8 lines
191 B
JavaScript
8 lines
191 B
JavaScript
/* IMPORT */
|
|
import adjustChannel from './adjust_channel.js';
|
|
/* MAIN */
|
|
const complement = (color) => {
|
|
return adjustChannel(color, 'h', 180);
|
|
};
|
|
/* EXPORT */
|
|
export default complement;
|