\textcolor 中的颜色代码是什么?如何才能获得与文本相同的颜色?

\textcolor 中的颜色代码是什么?如何才能获得与文本相同的颜色?

在此处输入图片描述

这是什么颜色?我试过了,但颜色稍微浅了一点。我怎样才能得到与\textcolor{orange}{text}上面的图片文字相似的颜色?provably efficient explorationfunction approximation

答案1

使用您选择的颜色选择工具,您可以获得与文本颜色相对应的 RGB 值。xcolor然后,您可以使用之前获得的 RGB 值定义此颜色,并在以后使用它:

在此处输入图片描述

\documentclass{article}
\usepackage{xcolor}
\definecolor{myorange}{RGB}{221,110,78}

\begin{document}

text \textcolor{myorange}{orange text} text

\end{document}

相关内容