I am using theme Warsaw but I do not like the colortheme crane, how can I change the colortheme to LightCyan as in the first answer of this question?
\mode<presentation>
{
\usetheme{Warsaw}
\usecolortheme{crane}
}
I am using theme Warsaw but I do not like the colortheme crane, how can I change the colortheme to LightCyan as in the first answer of this question?
\mode<presentation>
{
\usetheme{Warsaw}
\usecolortheme{crane}
}
simply overwrite the colours craneorange and craneblue of the colour theme by whatever you like
\documentclass{beamer}
\mode<presentation>
{
\usetheme{Warsaw}
\usecolortheme{crane}
}
\definecolor{craneorange}{rgb}{0.68,1,1}
\definecolor{craneblue}{gray}{0.85}
\begin{document}
\begin{frame}
test
\end{frame}
\end{document}
