9 lines
156 B
JavaScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
/* IMPORT */
import isLight from './is_light.js';
/* MAIN */
const isDark = (color) => {
return !isLight(color);
};
/* EXPORT */
export default isDark;