Possible Duplicate:
Defining a Color using another
How can one define a new color using the mix of other colors like red!50!blue. I can us this as an arguement of \color but not with \defincolor …
\documentclass{article}
\usepackage{xcolor}
\definecolor{mix}{named}{red!50!blue}
\begin{document}
\color{red!50!blue} works
\color{mix} doesn't work
\end{document}
I guess it’s a problem with the pseudo-modell named since red!50!blue is not a single color name. But is there a color-modell accepting mixed colors to define a new one?

\colorletbut I still wonder if there’ll be a way using\defincolor? – Tobi Jun 27 '12 at 7:54