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

9 lines
155 B
JavaScript

/* IMPORT */
import channel from './channel.js';
/* MAIN */
const blue = (color) => {
return channel(color, 'b');
};
/* EXPORT */
export default blue;