Is there an easy way to control the line width (and inevitably the line distance) of a pattern decoration?
I want a uniform line hatching, e.g. red / blue, with line width, say 3mm.
BTW: I need this for a large number of cells, so it would be good to use the patterns library to solve this, as opposed to drawing in manually.
\documentclass[tikz, border=5mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{patterns}
\begin{document}
\begin{tikzpicture}[font=\Huge,
Deco/.style={postaction={pattern=north west lines,
%line width=6mm, ultra thick, % no effect
pattern color=blue}},
]
\node[Deco, fill=red, draw, minimum size=5cm]{A};
\end{tikzpicture}
\end{document}


patterns.metalibrary which provides easy customization. – SebGlav May 15 '21 at 12:53