Beamer 中示例的确切绿色

Beamer 中示例的确切绿色

我想使用与示例模式相同的绿色。它与一致吗\definecolor{darkgreen}{rgb}{0,0.5,0}

是否可以在不定义新颜色的情况下使用它?(也许使用类似\structure或的东西\alert)。

我只是开始

\documentclass{beamer}
\setbeamercovered{transparent}
\begin{document}.

答案1

您可以使用以下内容来设置颜色:

\setbeamercolor{block title}
{use=structure,fg=structure.fg,bg=structure.fg!20!bg} 

\setbeamercolor{block title alerted}{use=alerted
text,fg=alerted text.fg,bg=alerted  text.fg!20!bg} 

\setbeamercolor{block title example}
{use=example text,fg=example text.fg,bg=example 
text.fg!20!bg}
 
\setbeamercolor{block body}{parent=normal text,
use=block title,bg=block title.bg!50!bg}  

\setbeamercolor{block body alerted}
{parent=normal text,use=block title alerted,bg=block 
title alerted.bg!50!bg}

\setbeamercolor{block body example}
{parent=normal text,use=block title example,
bg=block title example.bg!50!bg}

相关内容