UNPKG

color2k

Version:

a color parsing and manipulation lib served in roughly 2kB

6 lines (5 loc) 170 B
/** * Mixes two colors together. Taken from sass's implementation. */ declare function mix(color1: string, color2: string, weight: number): string; export default mix;