dvipsnames
color names when working with the colortbl package, as the following example should show:
Code: Select all
\documentclass{article}
\usepackage[dvipsnames]{xcolor}
\usepackage{colortbl}
\begin{document}
blah blah {\color{Red} blah} blah
\begin{tabular}{l l l l}
head 1& head 2& head 3& head 4\\
\rowcolor[Red]{.85}
fill A& fill B& fill C& fill D\\
fill A& fill B& fill C& fill D\\
fill A& fill B& fill C& fill D
\end{tabular}
\end{document}
Code: Select all
Package xcolor Error: Undefined color model `Red'.
\rowcolor
command - even though the color is clearly understood.Has anyone found this problem before, and know how to fix it so I can use the
dvipsnames
color names in my table colors?