I have a certain TikZ style that I would like to use over and over again (so I'd like to use it as a scope). Namely, I want the color of the curves to be red, with white borders (to give a "crossing over" effect when the curves go over each other), and I want the color of the text to be red too. Currently I am using the "double" effect to accomplish this, like so:
\tikzset{curveinscope/.style={every path/.style={draw=white, double distance=1pt, line width=2pt, double=red, color=red}}}
However this clashes with the "double" effect: setting "color=red" to make the text color red sets the drawing color of the first line in the "double" to also be red, which messes up the effect (it needs to be white).
How can I fix this?

