In the following example you see a listing with itemize type 1. The changed color in the text (red) and the changed color of the items (orange) do not take the iacolor when they are inactive.
How can I give to the inactive changed colors also the color of iacolor when they are not active?
\documentclass{powerdot}
\usepackage[utf8]{inputenc}
\renewcommand{\labelitemi}{\color{orange}\ensuremath\bullet}
\renewcommand{\labelitemii}{\color{orange}\ensuremath\bullet}
\renewcommand{\labelitemiii}{\color{orange}\ensuremath\bullet}
\renewcommand{\labelitemiv}{\color{orange}\ensuremath\bullet}
\begin{document}
\begin{slide}{titletxt}
\begin{itemize}[type=1]
\item<1-> txt A
\item<2-> txt B1 {\color{red}{txt B2}} txt B3
\item<3-> txt C {\color{red}{txt C2}} txt B3
\item<4-> txt D
\end{itemize}
\end{slide}
\end{document}

Have you any suggestion?
– virgil Aug 01 '19 at 09:40