Drawing a semi-transparent arrow should be easy enough, right?
\documentclass{article}
\usepackage{tikz}
%\usetikzlibrary{arrows} % this doesn't change the result
\pagenumbering{gobble}
\begin{document}
\begin{tikzpicture}
\draw[-stealth,line width=12pt,opacity=0.5] (0, 0) -- (0, 2);
\end{tikzpicture}
\end{document}
However, this produces the following result:

Note that the arrow is darker than it should be where the rectangle and arrowhead overlap.
How can I get an arrow of this shape and size without this artifact? (Clean solutions preferred.)

transparency groupfeature is for: wrap your arrow in\begin{scope}[transparency group, opacity=0.5] ... \end{scope}– Jake Feb 11 '15 at 21:16