如何更改标题下方的颜色?

如何更改标题下方的颜色?

在此处输入图片描述

我希望数字 2 的颜色与数字 1 的颜色相同。

这是我使用过的代码:

\documentclass[xcolor=dvipsnames]{beamer}
\usetheme{Darmstadt}
\usecolortheme[RGB={0,0,128}]{structure}
\definecolor{bluenavy}{RGB}{0,0,128}
\setbeamercolor{section in head/foot}{fg=white, bg=bluenavy}

抱歉,如果我写的方式不对,但这是我第一次在这里发布内容。

谢谢。

答案1

部分下方的空间用于放置子部分,因此更改其颜色的方式与更改部分的方式相同\setbeamercolor{subsection in head/foot}{fg=white, bg=bluenavy}

完成 MWE:

\documentclass[xcolor=dvipsnames]{beamer}
\usetheme{Darmstadt}
\usecolortheme[RGB={0,0,128}]{structure}
\definecolor{bluenavy}{RGB}{0,0,128}
\setbeamercolor{section in head/foot}{fg=white, bg=bluenavy}
\setbeamercolor{subsection in head/foot}{fg=white, bg=bluenavy}

\begin{document}
    \frame{}
\end{document}

相关内容