I'm having trouble to blend colors with TikZ. The MWE below does not render the blend in my system. I'm on Windows Xp with MiKTeX 2.9 and the latest version of TikZ/PGF downloaded and installed from CTAN. I don't know if this comes from my PDF viewer, since Sumatra doesn't even show but the first blend group, and Adobe Reader does render all the groups, but incorrectly. Any hints?
The code is pretty lame, just with the aim to make it as direct as possible and avoid any chance of issues coming from expansion, groups, or the likes.
EDIT: There must be something wrong with my code, because with Adobe Reader as PDF viewer, the code in Blend/transparency styles in pstricks and TikZ renders correctly.
\documentclass[11pt]{article}
\usepackage{tikz}
\pagestyle{empty}
\begin{document}
\begin{tikzpicture}[
%remember picture,
%overlay,
]
\begin{scope}[blend group=lighten]
\fill[green] (90:1) circle[radius=1.5];
\fill[blue] (180:1) circle[radius=1.5];
\fill[red] (0:1) circle[radius=1.5];
\end{scope}
\begin{scope}[xshift=6cm,blend group=darken]
\fill[green] (90:1) circle[radius=1.5];
\fill[blue] (180:1) circle[radius=1.5];
\fill[red] (0:1) circle[radius=1.5];
\end{scope}
\begin{scope}[xshift=12cm,blend group=multiply]
\fill[green] (90:1) circle[radius=1.5];
\fill[blue] (180:1) circle[radius=1.5];
\fill[red] (0:1) circle[radius=1.5];
\end{scope}
\begin{scope}[yshift=-4cm,blend group=screen]
\fill[green] (90:1) circle[radius=1.5];
\fill[blue] (180:1) circle[radius=1.5];
\fill[red] (0:1) circle[radius=1.5];
\end{scope}
\begin{scope}[yshift=-8cm,blend group=overlay]
\fill[green] (90:1) circle[radius=1.5];
\fill[blue] (180:1) circle[radius=1.5];
\fill[red] (0:1) circle[radius=1.5];
\end{scope}
\end{tikzpicture}
\end{document}

\pdfminorversion=7but that has no effect. – LaRiFaRi Jun 05 '15 at 08:47\definecolor{YELLOW}{rgb}{1,1,0}. If this blending is just supported forred|green|blueand\definecolor{rg}{rgb}{1,1,0}|\definecolor{gb}{rgb}{0,1,1}|\definecolor{br}{rgb}{1,0,1}(and all mixes with white and black), it should at least be mentioned in the manual. – LaRiFaRi Jun 05 '15 at 09:02every path/.append style={fill opacity=0.75}and it should again show meaningful results. – percusse Jun 05 '15 at 10:12\nodes or with\fillings in that scenario. Good that it was as simple as that and it did not require any hacks or debugging. It was a bit hidden under aTikZball color actually being a shading, though. – Marcos Aug 24 '16 at 12:58