Test/node_modules/khroma/dist/methods/lightness.js
2026-04-09 22:54:00 +07:00

8 lines
165 B
JavaScript

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