UNPKG

khroma

Version:

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

18 lines (9 loc) 251 B
/* IMPORT */ import luminance from '~/methods/luminance'; import type {Channels} from '~/types'; /* MAIN */ const isLight = ( color: string | Channels ): boolean => { return luminance ( color ) >= .5; }; /* EXPORT */ export default isLight;