UNPKG

khroma

Version:

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

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