UNPKG

@jeact/contrast-color

Version:

Simple function to get the contrast color for a text over some color

9 lines (8 loc) 253 B
import type { Color } from './types'; /** * Returns the best contrast color between black or white to the color * @param color The color * @returns Another color:) */ declare const yiqColor: (color: Color) => Color; export default yiqColor;