UNPKG

khroma

Version:

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

18 lines (9 loc) 239 B
/* IMPORT */ import channel from '~/methods/channel'; import type {Channels} from '~/types'; /* MAIN */ const green = ( color: string | Channels ): number => { return channel ( color, 'g' ); }; /* EXPORT */ export default green;