I work with the beamer template Heverlee that has the following setting for the itemize-command:
\definecolor{pblue} {RGB}{49,130,189} %primary blue
\setbeamercolor{item} {fg=pblue}
\setbeamertemplate{itemize item}[triangle]
Here is a sample using the code above:
\documentclass{beamer}
\definecolor{pblue} {RGB}{49,130,189} %primary blue
\setbeamercolor{item} {fg=pblue}
\setbeamertemplate{itemize item}[triangle]
\begin{document}
\begin{frame}
\frametitle{Sample frame title}
\begin{itemize}
\item a
\item b
\item c
\end{itemize}
\end{frame}
\end{document}
And to have a second itemize, I want exactly the same just with another name and another color, I tried the following:
\newenvironment{myitemize}
{\itemize\let\origitem\item[1][triangle]
\renewcommand{\item}{fg=pgreen}}
{\enditemize}
But I get the error message that an \item might be missing if I want to use it with \begin{myitemize}


enumitempackage doesn’t really work withBeamer. – Alan Munn Apr 27 '21 at 20:42beamerclass. For other document classes this should be fine I guess. – owmal Apr 28 '21 at 11:42