Tcolorbox 그라데이션 그레이 색상

Tcolorbox 그라데이션 그레이 색상

tcolorbox회색에서 흰색 비율의 단일 색상으로 그라디언트 음영을 사용 했으며 PDF의 출력에서 ​​CMYK 혼합 색상을 표시하는 색상을 확인했습니다. TeX 코딩이 정확합니까?

\documentclass{book}
\usepackage{tcolorbox}
\tcbuselibrary{skins}

\makeatletter%
\pagestyle{empty}
\definecolor{boxonegradbegin}{cmyk}{0,0,0,0.10}%
\newtcolorbox{gradientbox}[1][]{%
  enhanced,boxrule=0pt,boxsep=0pt,sharp corners,
  frame hidden,interior style={left color=boxonegradbegin,right color=white},
  #1
}
\makeatother%

\begin{document}

\begin{gradientbox}
The Strati resulted from the 3D Printed Car Design Challenge, conducted using crowd-sourcing technologies by Local Motors, which is based in Phoenix, Arizona. The company believes it is at the forefront of the 3D Industrial Revolution and describes itself as a free online and physical workspace that enables people to turn their vehicle innovations into reality and rewards them for their contribution. The key issues discussed in the brief for the design challenge were as follows.
\end{gradientbox}

\end{document} 

관련 정보