定义页面 rgb 的颜色

定义页面 rgb 的颜色

如何定义颜色以将其用作 rgb 页面颜色?此代码适用于蓝色而不是 myblue。谢谢

\documentclass[12pt,a4paper]{report}

\usepackage{xcolor}
\usepackage{blindtext}
\definecolor{myblue}{rgb}{201.0, 227.0, 248.0}
\pagecolor{myblue}


\begin{document}

ggfhgdg

\end{document}

答案1

\documentclass[12pt,a4paper]{report}
\usepackage{xcolor}
\definecolor{myblue}{RGB}{201, 227, 248}
\pagecolor{myblue}
\begin{document}

    ggfhgdg

\end{document}

答案2

rgb 的取值范围是 0 到 1,也许你想要 RGB 取值范围是 0-255 的整数(但在这种情况下你不希望值中包含 .0

在此处输入图片描述

\documentclass[12pt,a4paper]{report}

\usepackage{xcolor}
\usepackage{blindtext}
\definecolor{myblue}{RGB}{201, 227, 248}
\pagecolor{myblue}


\begin{document}

ggfhgdg

\end{document}

相关内容