[Tex/LaTex] How to change the custom color of the theme “Warsaw”

beamerthemes

Does anyone know how to change the dark blue in the theme Warsaw to other other colors?

I tried :

\setbeamercolor{title}{fg=red!80!black,bg=red!20!white}

and

\setbeamertemplate{title page}{fg=red!80!black,bg=red!20!white}

Best Answer

Before attempting to manually change colors, check the beamer documentation and see the selection of color themes available to choose from (the beamer matrix could also be useful); a little example using spruce:

\documentclass{beamer}
\usetheme{Warsaw}
\usecolortheme{spruce}


\begin{document}

\begin{frame}
\frametitle{Test}
\end{frame}

\end{document}

enter image description here

If none of the existing color themes satisfy you, you can change, for example, the structure color (or one of the palettes):

\documentclass{beamer}
\usetheme{Warsaw}

\setbeamercolor{structure}{fg=cyan!90!black}

\begin{document}

\begin{frame}
\frametitle{Test}
\end{frame}

\end{document}

enter image description here