Tested tool guide
Tested browser tools
Checked August 16, 2026
What Color Mixer Tool does, with a checked example
Color Mixer Tool calculates one color from two or more selected colors, with each source contributing according to its assigned ratio. Mixing can be performed in RGB, HSL, or LAB coordinates. That choice matters because identical colors and ratios can produce different results in different spaces. The most common misconception is expecting the result to behave like mixed paint. This tool interpolates digital color values, not physical pigments, so its output models a numerical color mixture rather than subtractive paint or ink mixing.
Worked example
A concrete input and expected output from the current implementation.
Input
#fe0000 and #0000fe; RGB color space; ratio 1:1
->
Expected output
rgb(127, 0, 127), equivalent to #7f007f
With equal RGB weights, each channel is averaged independently. Red is (254 + 0) / 2 = 127, green remains 0, and blue is (0 + 254) / 2 = 127.