I can generate the following but need to modify it to include shading of the intersection of circle A and B - C. Any suggestions?
\documentclass[border=0.2cm]{standalone}
% Required packages
\usepackage[dvipsnames]{xcolor}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[thick,
set/.style = {circle,
minimum size = 3cm,
fill=black!30}]
% Set A
\node[set,label={135:$A$}] (A) at (0,0) {};
% Set B
\node[set,fill=white, label={45:$B$}] (B) at (1.8,0) {};
% Set C
\node[set,label=$C$] (C) at (0.9,1.5) {};
% Intersection
\begin{scope}
\clip (0,0) circle(1.5cm);
\clip (1.8,0) circle(1.5cm);
\clip (0.9,1.5) circle(1.5cm);
\fillwhite!60 circle(1.5cm);
\end{scope}
% Circles outline
\draw (0,0) circle(1.5cm);
\draw (1.8,0) circle(1.5cm);
\draw (0.9,1.5) circle(1.5cm);
\end{tikzpicture}
\end{document}



