UNPKG

khroma

Version:

A collection of functions for manipulating CSS colors, inspired by SASS.

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