DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
239 Bytes
/* IMPORT */
import isLight from '~/methods/is_light';
import type {Channels} from '~/types';
/* MAIN */
const isDark = ( color: string | Channels ): boolean => {
return !isLight ( color );
};
/* EXPORT */
export default isDark;