Pick two colors and a mix percentage, and the tool builds the matching CSS color-mix() function and previews the computed result.
A CSS Color 5 function that blends two colors in a chosen color space. color-mix(in srgb, red 30%, blue) mixes 30% red with 70% blue.
We compute the srgb result the same way browsers do for the srgb space — linear interpolation of the gamma-encoded channels.
color-mix() is supported in all current major browsers. The generated HEX is a safe fallback for older ones.