UNPKG

khroma

Version:

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

9 lines (8 loc) 156 B
/* IMPORT */ import isLight from './is_light.js'; /* MAIN */ const isDark = (color) => { return !isLight(color); }; /* EXPORT */ export default isDark;