UNPKG

248 BJavaScriptView Raw
1import color from 'color';
2export default function getContrastingColor(input, light, dark) {
3 if (typeof input === 'string') {
4 return color(input).isLight() ? dark : light;
5 }
6
7 return light;
8}
9//# sourceMappingURL=getContrastingColor.js.map
\No newline at end of file