答案1
一个是阴影,另一个是填充,在默认设置下,它们使用不同的颜色模型 (rgb + cmyk)。您可以强制使用相同的颜色模型:
\documentclass{article}
\usepackage[dvipsnames]{xcolor}
\usepackage{tikz}
\begin{document}
\section{rgb}
\selectcolormodel{rgb}
\begin{tikzpicture}
\draw[left color=BlueGreen,right color=BlueGreen] (0,0) rectangle (2,1);
\end{tikzpicture}
\begin{tikzpicture}
\draw[fill=BlueGreen] (0,0) rectangle (2,1);
\end{tikzpicture}
\section{cmyk}
\selectcolormodel{cmyk}
\begin{tikzpicture}
\draw[left color=BlueGreen,right color=BlueGreen] (0,0) rectangle (2,1);
\end{tikzpicture}
\begin{tikzpicture}
\draw[fill=BlueGreen] (0,0) rectangle (2,1);
\end{tikzpicture}
\end{document}