Beamer 自定义颜色无法按预期工作

Beamer 自定义颜色无法按预期工作

我正在尝试在 Beamer 中设置自定义颜色主题,但结果并不像我想象的那样。

这是我的颜色主题:

\definecolor{NASAred}{RGB}{252, 61, 33}
\definecolor{NASAblue}{RGB}{11, 61, 145}

\setbeamercolor{title}{bg=NASAblue, fg=white} % title block on first slide
\setbeamercolor{palette primary}{bg=NASAblue, fg=white} %right-hand side of bottom
\setbeamercolor{palette secondary}{bg=NASAred, fg=white} % center bottom
\setbeamercolor{palette tertiary}{bg=NASAblue,fg=white} % left bottom
\setbeamercolor{palette quaternary}{bg=NASAred,fg=white} %
\setbeamercolor{structure}{fg=NASAblue} % box headings


\setbeamercolor{section in toc}{fg=NASAblue} % TOC sections
\setbeamercolor{subsection in head/foot}{bg=NASAred,fg=white} %
\setbeamercolor{item projected}{fg=NASAblue, bg=white} %
\setbeamercolor{frametitle}{fg=NASAblue,bg=white} %
\setbeamercolor{local structure}{fg=NASAblue} %
\setbeamercolor{item projected}{fg=NASAblue,bg=white} %
\setbeamertemplate{itemize item}{\color{NASAblue}$\bullet$} %
\setbeamertemplate{itemize subitem}{\color{NASAblue}\scriptsize{$\bullet$}}%

以下是我的结果:

全图

放大:

在此处输入图片描述

这两种颜色(我从美国国家航空航天局官方风格指南) 看起来像实际肉丸中的颜色(或者当我将它们放在一起时,看起来像样式指南中的样本)。特别是,蓝色看起来太暗,红色看起来太橙色。我在三个不同的显示器上测试了这一点,所以现在我怀疑 Beamer 中的自定义颜色内置了一些变暗或变亮规则,而不是直接使用它们,但我找不到任何关于它的文档。

有人知道发生了什么事吗?

答案1

如果您查看设计指南的第 12 页,“全彩徽章”中的颜色似乎比幻灯片上的徽标或在互联网上找到的徽标的颜色更深。

解决方法:

.svg从 Wikipedia 中取出肉丸徽标,并用 Inkscape 打开它。例如,对于蓝色区域,我看到以下值:

在此处输入图片描述

使用这些值来定义投影仪颜色,或者从样式指南中获取值并相应地调整图像。

\documentclass{beamer}

\useoutertheme{infolines}

\definecolor{NASAred}{RGB}{238, 41, 61}
\definecolor{NASAblue}{RGB}{26, 93, 173}

\setbeamercolor{title}{bg=NASAblue, fg=white} % title block on first slide
\setbeamercolor{palette primary}{bg=NASAblue, fg=white} %right-hand side of bottom
\setbeamercolor{palette secondary}{bg=NASAred, fg=white} % center bottom
\setbeamercolor{palette tertiary}{bg=NASAblue,fg=white} % left bottom
\setbeamercolor{palette quaternary}{bg=NASAred,fg=white} %
\setbeamercolor{structure}{fg=NASAblue} % box headings


\setbeamercolor{section in toc}{fg=NASAblue} % TOC sections
\setbeamercolor{subsection in head/foot}{bg=NASAred,fg=white} %
\setbeamercolor{item projected}{fg=NASAblue, bg=white} %
\setbeamercolor{frametitle}{fg=NASAblue,bg=white} %
\setbeamercolor{local structure}{fg=NASAblue} %
\setbeamercolor{item projected}{fg=NASAblue,bg=white} %
\setbeamertemplate{itemize item}{\color{NASAblue}$\bullet$} %
\setbeamertemplate{itemize subitem}{\color{NASAblue}\scriptsize{$\bullet$}}%

\title{Text}

\begin{document}

\begin{frame}
\titlepage
\centering
\includegraphics[width=.3\textwidth]{2000px-NASA_logo}
\end{frame}
\end{document}

在此处输入图片描述

(徽标文件取自https://upload.wikimedia.org/wikipedia/commons/e/e5/NASA_logo.svg

相关内容