I want to draw certain shapes inside a set of concentric circles. I have been able to draw the concentric circles. My current MWE is:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usetikzlibrary{decorations.text,calc,arrows.meta}
\usetikzlibrary{positioning}
% Color Define
\definecolor{magenta}{HTML}{FF00FF}
\definecolor{brass}{rgb}{0.71, 0.65, 0.26}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}[line width=0.5mm]
\coordinate (O) at (0,0);
\draw[magenta] (O) circle (6.5);
\draw[magenta] (O) circle (4.8);
\draw[magenta] (O) circle (2.3);
\draw[brass,dashed] (O) circle (1.1);
\draw[red] (O) circle (0.35);
\end{tikzpicture}
\end{figure}
\end{document}
This provides [not drawn to scale]:
The desired output is as follow, basically how to draw those shapes inside the circle and show the dimensions:
Appreciate your suggestions and insights in advance.


