我被要求在演示文稿中使用两种颜色。如果只有一种颜色,我会使用 beamer@blendedblue 作为基色,但由于我需要两种颜色,所以我不能使用它。有没有办法将基色改为渐变色?
答案1
您Berlin
在评论中提到了主题。我认为这个主题不适合渐变,因为它依赖于并排放置的纯色元素。为什么不简单地为这些元素使用 2 种颜色呢?举个例子:
\documentclass{beamer}
\colorlet{color1}{green!60!blue}
\colorlet{color2}{blue}
\setbeamercolor{structure}{fg=color1}
\setbeamercolor{section in head/foot}{bg=structure.fg!50!color2}
\setbeamercolor{subsection in head/foot}{bg=structure.fg!75!color2}
\usetheme{Berlin}
\title{title}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\section{bla}
\begin{frame}
\frametitle{title}
abc
\end{frame}
\end{document}