I have a series of technical drawings that I use for background, highlighting features or adding dimensions and notes with Tikz. In some cases the background is very busy, and arrows tend to "disappear" in it. Using colors for arrows is not an option as the final technical brochure will be B/W. I am looking for an easy way to draw a white arrow tip over the background, slightly oversized compared to the normal arrow tip, in order to mask the background locally and enhance the (black) arrow tip visibility, drawn later. I have supplied a MWE to illustrate the context. In reality, the backgrounds I deal with are worse that in the MWE.
\documentclass[border= 5mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{patterns, arrows}
\begin{document}
\begin{tikzpicture}
\draw [step=0.1cm, pattern=north west lines] (-1,0) [very thick] rectangle (0.01, 3);
\draw [step=0.1cm, pattern=north west lines, very thick] (0,0) rectangle (1.42,1.4);
\draw [step=0.1cm, pattern=north east lines] (0,1.42) [very thick] rectangle (1.5,3);
\draw[] (-4.5,0) -- (-2,0) node[above, midway, text width =2.3cm]{Clearance: 0,1 to 0,2 mm};
\draw[->, >= triangle 45] (-2,0) -- (0.5,1.38);
\end{tikzpicture}
\end{document}

