Paint Color Mixer (RGB)
Mix two colors together and see the result.
Enter RGB values or hex codes to blend paint colors visually.
Color mixing can be done by averaging the RGB (Red, Green, Blue) values of two colors.
Subtractive mixing (like real paint) is different from additive mixing (like screens), but RGB averaging gives a useful approximation.
Formula (equal parts):
Mixed R = (R1 + R2) / 2
Mixed G = (G1 + G2) / 2
Mixed B = (B1 + B2) / 2
With custom ratios:
Mixed R = R1 × ratio1 + R2 × ratio2
Common mixes:
| Color 1 | Color 2 | Result |
|---|---|---|
| Red | Yellow | Orange |
| Blue | Yellow | Green |
| Red | Blue | Purple |
| Red | White | Pink |
| Black | White | Gray |
RGB ranges: Each channel goes from 0 (none) to 255 (full).
Hex codes: #RRGGBB format, where each pair is a hex value (00–FF).