Folgefrage: Tikz Cycle Segmente in unterschiedlichen Farben
Folgefrage zu [link text][1]
Wie kann ich jetzt noch die 4 Segmente in unterschiedlichen Farben darstellen?
Hier mein MWE:
\documentclass[tikz,border=10pt]{standalone}
\usetikzlibrary{decorations.text}
\definecolor{mygray}{RGB}{208,208,208}
\definecolor{mymagenta}{RGB}{226,0,116}
\newcommand*{\mytextstyletwo}{\sffamily\Large\bfseries\color{black!85}}
\newcommand{\arcnoarrow}[3]{%
% inner radius, middle radius, outer radius, start angle,
% end angle, tip protusion angle, options, text
\pgfmathsetmacro{\rin}{1.7}
\pgfmathsetmacro{\rmid}{2.2}
\pgfmathsetmacro{\rout}{2.7}
\pgfmathsetmacro{\astart}{#1}
\pgfmathsetmacro{\aend}{#2}
\pgfmathsetmacro{\atip}{0}
\fill[mygray, very thick] (\astart+\atip:\rin)
arc (\astart+\atip:\aend:\rin)
-- (\aend-\atip:\rmid)
-- (\aend:\rout) arc (\aend:\astart+\atip:\rout)
-- (\astart:\rmid) -- cycle;
\path[
decoration = {
text along path,
text = {|\mytextstyletwo|#3},
text align = {align = center},
raise = -1.0ex
},
decorate
](\astart+\atip:\rmid) arc (\astart+\atip:\aend+\atip:\rmid);
}
\begin{document}
\begin{tikzpicture}
\fill[even odd rule,mymagenta] circle (1.5);
\node at (0,0) [
font = \mytextstyletwo,
color = white,
align = center
]{
PDCA\\
Cycle
};
\arcnoarrow{ 90}{ 0}{Plan}
\arcnoarrow{270}{360}{Do}
\arcnoarrow{180}{270}{Check}
\arcnoarrow{180}{ 90}{Act}
\end{tikzpicture}
\end{document}
[1]: https://texwelt.de/wissen/fragen/21717/tikz-cycle-wie-im-beispiel-nur-ohne-pfeile