I am currently trying to change the color of the intersection between two circles in a venn diagram. I have tried different proposed solution here on stack without success. The code I am running is the following;
\begin{center}
\usetikzlibrary{shapes,backgrounds}
\pagestyle{empty}
\def\firstcircle{(0,0) circle (1.5cm)}
\def\secondcircle{(60:2cm) circle (1.5cm)}
\def\thirdcircle{(0:2cm) circle (1.5cm)}
\begin{tikzpicture}
\begin{scope}[shift={(3cm,-5cm)}, fill opacity=0.5]
\fill[green] \firstcircle;
\fill[green] \secondcircle;
\fill[red] \thirdcircle;
\draw \firstcircle node[below] {$A$};
\draw \secondcircle node [above] {$B$};
\draw \thirdcircle node [below] {$C$};
\end{scope}
\end{tikzpicture}
\end{center}

