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$}}%

내 결과는 다음과 같습니다.

전체 이미지

확대됨:

여기에 이미지 설명을 입력하세요

색상 중 어느 것도 (RGB를 얻었습니다.)공식 NASA 스타일 가이드) 실제 미트볼의 색상과 비슷해 보입니다(또는 스타일 가이드의 샘플을 나란히 놓았을 때와 비슷함). 특히 파란색은 너무 어둡게 보이고 빨간색은 너무 주황색으로 보입니다. 세 개의 서로 다른 모니터에서 이것을 테스트했으므로 이제 Beamer의 사용자 정의 색상을 그대로 사용하는 대신 어둡게 하거나 밝게 하는 규칙이 내장되어 있는 것으로 의심되지만 이에 대한 문서를 찾을 수 없습니다.

무슨 일인지 아는 사람 있나요?

답변1

p.를 보면 디자인 가이드 12번에 따르면 "풀 컬러 휘장"의 색상은 슬라이드의 로고나 인터넷에서 찾은 로고의 색상보다 더 어두운 것 같습니다.

해결 방법:

.svgWikipedia에서 미트볼 로고를 가져와 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)

관련 정보