% !TEX TS-program = lualatex
% Created by Alain Matthes on 2024-12-25.
% Copyright (c) 2024 AlterMundus.
\documentclass[margin = 12pt]{standalone}
\usepackage[mini]{tkz-euclide}
\usepackage{tkz-elements}

\begin{document}

\directlua{loadfile("lua/" .. tex.jobname .. ".lua")(1.4)}

\begin{tikzpicture}
	\tkzGetNodes
	\tkzFillPolygon[lightgray!30](A,B,C)
	\foreach \n/\c in {1/red,2/orange,3/yellow,4/green,5/blue,6/violet}
		{
			\tkzFillCircle[\c!30,opacity=.4](c\n,t\n)
			\tkzDrawCircle[thick,\c](c\n,t\n)
		}
	\tkzDrawPolygon[thick](A,B,C)
	\tkzDrawPoints(A,B,C)
\end{tikzpicture}

\end{document}

