\definecolor{}{}{} 为什么这个值 0,255,255 有效,而这个 26,160,224 无效?

\definecolor{}{}{} 为什么这个值 0,255,255 有效,而这个 26,160,224 无效?

我想知道为什么我的第一行可以工作(并产生青色)而第二行不工作。值(26、120、224)是我用 GIMP 选择的 RGB 值,所以我认为它们是正确的。

  1. \definecolor{beamer@blendedblue}{rgb}{0,255,255}
  2. \definecolor{beamer@blendedblue}{rgb}{26,160,224}

答案1

这只是错误规范中的一个错误。请注意,模型rgb意味着您的值应该在0和之间1,而RGB意味着您的值应该在0和之间255(就像您选择的那样)。

梅威瑟:

\documentclass{beamer}

\definecolor{a}{rgb}{0,1,1}
\definecolor{b}{rgb}{0.39,0.62,0.88}
\definecolor{A}{RGB}{0, 255, 255}
\definecolor{B}{RGB}{26, 160, 224}

\usepackage{xcolor}

\begin{document}
    \begin{frame}{My title}
        \begin{enumerate}
            \item {\color{a}this is colored a}
            \item {\color{b}this is colored b}
            \item {\color{A}this is colored A}
            \item {\color{B}this is colored B}
        \end{enumerate}
    \end{frame}
\end{document}

看看定义的颜色aA以及bB是如何相同的?

干杯,k

在此处输入图片描述

相关内容