UNPKG

khroma

Version:

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

9 lines (8 loc) 195 B
/* IMPORT */ import adjustChannel from './adjust_channel.js'; /* MAIN */ const darken = (color, amount) => { return adjustChannel(color, 'l', -amount); }; /* EXPORT */ export default darken;