Cambiar el color de fuente en el título

Cambiar el color de fuente en el título

Me pregunto ¿cómo puedo cambiar el color de fuente en el título de mi presentación?

Yo viaquícómo cambiar el color de la barra pero no la fuente real.

Código original:

\documentclass[xcolor=dvipsnames]{beamer}
 \usetheme{CambridgeUS}
 \useinnertheme{rectangles}
 \useoutertheme{infolines}

 \setbeamercolor{frametitle}{fg=Brown,bg=Brown!20}
 \setbeamercolor{section in head/foot}{bg=Brown}
 \setbeamercolor{author in head/foot}{bg=Brown}
 \setbeamercolor{date in head/foot}{fg=Brown}

 \begin{document}

 \section{Font to be changed in the headline}
 \begin{frame}
 \frametitle{A test frame}
 \end{frame}

 \end{document}

Editar: Después de la respuesta, lo siguiente no parece funcionar para mí

 \documentclass[xcolor=dvipsnames]{beamer}
 \mode<presentation>
 {
 \usetheme{AnnArbor}
 \setbeamercovered{transparent}
\useinnertheme{rounded}
   \usecolortheme{spruce}
 }

  \setbeamercolor{section in head/foot}{fg=White}


 \begin{document}

 \section{Font to be changed in the headline}
 \begin{frame}
 \frametitle{A test frame}
 \end{frame}

 \end{document}

Me gustaría mantener el tema como está y solo me gustaría cambiar la fuente del título para que sea blanca; de lo contrario, será ilegible.

Gracias.

Respuesta1

Agregue una fgespecificación (primer plano) para las plantillas de color apropiadas; Por ejemplo:

 \setbeamercolor{section in head/foot}{bg=Brown,fg=red}
 \setbeamercolor{subsection in head/foot}{bg=gray!30,fg=black}

Un ejemplo completo:

\documentclass[xcolor=dvipsnames]{beamer}
\usetheme{CambridgeUS}
\useinnertheme{rectangles}
\useoutertheme{infolines}

\setbeamercolor{frametitle}{fg=Brown,bg=Brown!20}
\setbeamercolor{section in head/foot}{bg=Brown,fg=red}
\setbeamercolor{subsection in head/foot}{bg=gray!30,fg=black}
\setbeamercolor{author in head/foot}{bg=Brown}
\setbeamercolor{date in head/foot}{fg=Brown}

\begin{document}

\section{Font changed in the headline}
\begin{frame}
\frametitle{A test frame}
\end{frame}
\subsection{Font changed in the headline}
\begin{frame}
\frametitle{A test frame}
\end{frame}

\section{Font changed in the headline}
\begin{frame}
\frametitle{A test frame}
\end{frame}
\subsection{Font changed in the headline}
\begin{frame}
\frametitle{A test frame}
\end{frame}
 
\end{document}

El titular resultante:

ingrese la descripción de la imagen aquí

Actualizar

Después de la edición de la pregunta, esto

\documentclass[xcolor=dvipsnames]{beamer}
 \mode<presentation>
 {
 \usetheme{AnnArbor}
 \setbeamercovered{transparent}
\useinnertheme{rounded}
   \usecolortheme{spruce}
 }

  \setbeamercolor{section in head/foot}{fg=White}


 \begin{document}

 \section{Font to be changed in the headline}
 \begin{frame}
 \frametitle{A test frame}
 \end{frame}

 \end{document}

produce

ingrese la descripción de la imagen aquí

información relacionada