Mix an unlimited number of colors with easy‑to‑use weight sliders. Adjust each color's influence from 0 to 10, see the resulting HEX and RGB values in real time. Based on additive RGB mixing – perfect for digital design.
Color blending combines multiple colors into one. In digital design, we use the RGB additive model where colors are created by adding light. The blend is a weighted average of the red, green, and blue components of each color. This tool generalizes the classic two‑color mixer to any number of colors, each with its own weight (influence). The formula is:
Cmix = ( Σ wi·Ci ) / Σ wi
where Ci = (Ri, Gi, Bi) and wi is the weight of color i.
Given n colors with RGB components (Ri,Gi,Bi) and positive weights wi, the mixed color is:
R_mix = round( Σ(w_i * R_i) / Σw_i )
G_mix = round( Σ(w_i * G_i) / Σw_i )
B_mix = round( Σ(w_i * B_i) / Σw_i )
If total weight is zero, the result is black (0,0,0). Each component is clamped to [0,255]. This method is standard in image processing for alpha compositing and layer blending.
| Colors (weights) | Mixed HEX | Mixed RGB |
|---|---|---|
| Red (#ff0000, w=1) + Blue (#0000ff, w=1) | #800080 | (128,0,128) |
| Red (1) + Green (1) + Blue (1) | #808080 | (128,128,128) |
| Cyan (#00ffff, 2) + Magenta (#ff00ff, 1) | #5580ff | (85,128,255) |
| White (#ffffff, 1) + Black (#000000, 1) | #808080 | (128,128,128) |
| Orange (#ffa500, 3) + Purple (#800080, 1) | #e08c3c | (224,140,60) |
A design team has three brand colors: primary blue (#336699), secondary teal (#339999), and accent coral (#ff6666). They want a unified background color that reflects all three equally. By setting each weight to 1, the blended color becomes #6b7f8c (approx). They can then adjust weights to emphasize certain hues. This tool lets them experiment in seconds.
Additive (RGB): Used for light (screens). Combining colors increases brightness. Equal parts red, green, blue produce gray/white. Our tool uses this model because it's the standard for digital media.
Subtractive (CMYK): Used for pigments (paint, print). Mixing colors absorbs light, leading to darker results. This tool does not simulate subtractive mixing, but you can approximate by converting RGB to CMYK mentally.