在带有法兰克福主题的乳胶投影仪中更改导航栏的颜色

Changing navigation bar's color in a latex beamer with Frankfurt theme

我想更改幻灯片顶部的黑色导航栏的颜色。这是一张照片:

您可以像这样更改标题的背景颜色:

\documentclass{beamer}

\usetheme{Frankfurt}

\setbeamercolor{section in head/foot}{bg=red}

\begin{document}

\section{title}
\begin{frame}
\frametitle{title}
    abc
\end{frame} 
    
\end{document}