我正在做投影仪演示,塞格德主题和鸽子colortheme。基本上,我想将所有鸽子色线条和它们之间的文本的颜色更改为设置的 RGB 值,而不\definecolor
更改任何其他内容。
非常感谢您的帮助!
答案1
线条的颜色由 colour 控制separation line
。你可以将此颜色更改为你定义的任何颜色:
\documentclass{beamer}
\definecolor{mycolor}{RGB}{255,0,0}
\usetheme{Szeged}
\usecolortheme{dove}
\setbeamercolor{separation line}{bg=mycolor}
\setbeamercolor{title in head/foot}{fg=mycolor}
\setbeamercolor{institute in head/foot}{fg=mycolor}
\setbeamercolor{section in head/foot}{fg=mycolor}
\title{text}
\author{names}
\institute{institute}
\begin{document}
\section{title}
\begin{frame}
\frametitle{title}
abc
\end{frame}
\end{document}