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

9 lines
211 B
JavaScript

/* IMPORT */
import adjustChannel from './adjust_channel.js';
/* MAIN */
const transparentize = (color, amount) => {
return adjustChannel(color, 'a', -amount);
};
/* EXPORT */
export default transparentize;