DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
251 Bytes
/* 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;