Beamer:如何定义 Dolphin 主题的颜色

Beamer:如何定义 Dolphin 主题的颜色

我尝试了不同的主题,无意中发现了一个我非常喜欢其颜色组合的主题组合(颜色主题:海豚)。我按顺序使用了以下主题:柏林、法兰克福和新加坡。显然,将这​​些不同的主题一起使用并不理想,我偶然发现了这种颜色组合,这真是太幸运了。我希望能够定义您在此处看到的颜色,以便我可以将它们仅用于一个主题(例如法兰克福),但我不知道海豚附带的颜色名称。有人可以帮我重新创建这个吗审美的只使用一个主题?这是一个最小的工作示例和一个屏幕截图。

编辑:(1) 我特别想知道如何为法兰克福和柏林做到这一点。我喜欢法兰克福的单行框架线,以及它具有的一些其他格式化功能。但最重要的是,我有兴趣弄清楚颜色,这样我就可以自己创建这个方案,可能使用各种不同的模板。(2) 我还希望将目录标题行设为白色文本,以便它更突出。

\documentclass[10pt,xcolor={usenames,dvipsnames,svgnames}]{beamer}
%\documentclass[10pt]{beamer}
%\documentclass[10pt, handout]{beamer} %for no pauses

\usepackage{graphicx}
\usepackage{amsmath}
\usefonttheme{professionalfonts}
\usefonttheme{serif}
\usepackage{mathpazo}
\usepackage{multicol} 
\usepackage{adjustbox}

\usetheme{Berlin}
\usetheme{Frankfurt}
\usetheme{Singapore}

\usecolortheme{dolphin}

\setbeamertemplate{section in toc}{\inserttocsectionnumber.~\inserttocsection}

\AtBeginSection[]
{
    \begin{frame}<beamer>{Outline}
    \tableofcontents[currentsection,currentsubsection]
\end{frame}
}

\setbeamercolor{alerted text}{fg=MediumBlue}

\title{Title}

\author{Name}

\institute[University] 
{
  Department \\
  University \\
  }
% - Use the \inst command only if there are several affiliations.
% - Keep it simple, no one is interested in your street address.

\date{DATE}

\begin{document}

%Title Page
\begin{frame}
  \titlepage
\end{frame}

\begin{frame}{Sample}
\begin{itemize}
    \item Test 
    \item Test 
\end{itemize}
\end{frame} 

\end{document} 

在此处输入图片描述

答案1

结合Frankfurt主题

\usecolortheme{dolphin}
\definecolor{myblue}{RGB}{111,110,200}
\setbeamercolor{structure}{fg=myblue}
\setbeamercolor{section in head/foot}{bg=myblue}

应产生至少与问题中的屏幕截图有相似颜色的输出:

在此处输入图片描述

\documentclass[10pt,xcolor={usenames,dvipsnames,svgnames}]{beamer}

\usepackage{amsmath}
\usefonttheme{professionalfonts}
\usefonttheme{serif}
\usepackage{mathpazo}

\usetheme{Frankfurt}
\usecolortheme{dolphin}
\definecolor{myblue}{RGB}{111,110,200}
\setbeamercolor{structure}{fg=myblue}
\setbeamercolor{section in head/foot}{bg=myblue}


\setbeamertemplate{section in toc}{\inserttocsectionnumber.~\inserttocsection}

\AtBeginSection[]
{
    \begin{frame}<beamer>{Outline}
    \tableofcontents[currentsection,currentsubsection]
\end{frame}
}

\setbeamercolor{alerted text}{fg=MediumBlue}

\title{Title}

\author{Name}

\institute[University] 
{
  Department \\
  University \\
  }
% - Use the \inst command only if there are several affiliations.
% - Keep it simple, no one is interested in your street address.

\date{DATE}

\begin{document}

%Title Page
\begin{frame}
  \titlepage
\end{frame}

\begin{frame}
\tableofcontents
\end{frame}
\section{section}
\begin{frame}{Sample}
\begin{itemize}
    \item Test 
    \item Test 
\end{itemize}
\end{frame} 

\end{document} 

相关内容