我这个beamer默认的item的出现效果(刚出现的那一帧)是蓝色,我想改为黄色或者红色。请问该如何修改?
beamer2.tex
参考下面的代码:
\documentclass[10pt, compress, aspectratio=1610]{beamer}
\usepackage{color}
\definecolor{light-gray}{gray}{0.8}
\newcommand{\itemcolor}[1]{% Update list item colour
\renewcommand{\makelabel}[1]{\color{#1}\hfil ##1}}
\begin{document}
\begin{frame}
\begin{center}
\only<2>{\setbeamercolor*{item}{fg=light-gray}}
\begin{itemize}
\color<2->{light-gray}
\item Item1
\item Item2
\item Item3
\item Item4
\end{itemize}
\end{center}
\end{frame}
\end{document}
选自这里:https://tex.stackexchange.com/questions/251099/change-the-color-of-bullets-in-a-frame-using-pause
老哥,您给的这个改的是变化之后的颜色欸,我想改的是变化之前的颜色。