I am making a series of figures explaining the photolithographic process, and need to find a way to illustrate edge beads during spin coating. To show this I initially wanted to use radial shading, and create a band around the edge of my figure where the color darkens over a short distance, but I cannot seem to find out how to define the width of the inner or outer color in that shading mode. The result is that the shading I want to employ progresses gradually from the origo of the circle and terminates at the very edge.
How can I ensure that the color change starts a user definded distance from the edge?
E.g. as indicated in the dummy code (does not compile):
\begin{tikzpicture}
\draw[outer color=purple!70!black,inner color=purple!80,fading width=5pt](0,0) circle (1.5);
\end{tikzpicture}


1.45? – Sigur Nov 23 '13 at 14:15\shade[ball color=red] (0,0) circle (1.5);ps: you'll need\usetikzlibrary{shadings}. – Sigur Nov 23 '13 at 14:22\begin{tikzpicture} \drawpurple!70!black,fill circle(1.5); \drawpath fading=circle with fuzzy edge 10 percent,fill=purple!80 circle(1.5); \end{tikzpicture}
does the trick.
– The V Nov 23 '13 at 14:41