I am trying to fill the region enclosed by three circumferences (the little one in the middle) using TikZ or Tkz-Euclide but I am unable to do so, even after looking at several examples.
Here's my MWE:
\documentclass[10pt]{scrartcl}
\usepackage{tikz}
\usepackage{tkz-euclide}
\usetkzobj{all}
\usetikzlibrary{calc,decorations.pathmorphings}
\begin{document}
\begin{tikzpicture}
\tkzDefPoints{0/0/A, 2/0/B, 1/1.73/C}
\tkzDrawCircle[R](A,1cm)
\tkzDrawCircle[R](B,1cm)
\tkzDrawCircle[R](C,1cm)
\tkzLabelPoints[below left](A)
\tkzLabelPoints[below right](B)
\tkzLabelPoints[above](C)
\tkzDrawPoints(A,B,C)
\end{tikzpicture}
\end{document}
For reference, I have consulted the following similar questions:
Filling a complex region with TikZ
Filling in an area enclosed by two arcs and a line


\fill[blue] ($(A)!0.5!(B)$) arc(0:60:1) arc(-120:-60:1) arc(120:180:1);. – Sep 24 '18 at 02:04arc’s can be joined together this way. Will update my answer. ;) – Ruixi Zhang Sep 24 '18 at 02:06