I am trying to make all itemization symbols and description items in the current text color. While this works for itemize and enumerate, it does not work for description. What am I missing here?
\documentclass{beamer}
\setbeamercolor{item}{fg=.}
%\setbeamercolor{item}{fg=magenta}
\begin{document}
\begin{frame}{Description Test}
\color{red}
\begin{description}
\color{blue}
\item[Label] Test
\item[Label] Test
\end{description}
\begin{itemize}
\color{orange}
\item Test
\end{itemize}
\end{frame}
\end{document}
My expectation would be that the label gets colored in blue, but it does not:

If I change the fg=. to fg=magenta, it becomes magenta, so it is the right template I am using, but it does not apply correctly.

