When I make an edge opaque (using tikz-network) the label becomes opaque. How can I adjust the opacity of the label independently for edges?
In the following figure $\frac{3}{4}\epsilon$ is opaque.
This question is close to the one asked here: How to change fill opacity without affecting the angle label?
The following code reproduces the image above:
\documentclass[preview]{standalone}
\usepackage{tikz-network}
\begin{document}
\begin{center}
\begin{tikzpicture}
\useasboundingbox (0,0) rectangle (4,2);
\Vertex[x=0.0, y=0.75,size=0.4,style={color=red},opacity=0.3,label=$+$]{pOne}
\Vertex[x=1.0, y=0.75,size=0.4,style={color=red},opacity=0.3,label=$+$]{pTwo}
\Vertex[x=2.0, y=0.75,size=0.4,style={color=red},opacity=0.3,label=$+$]{pThree}
\Vertex[x=3.0, y=0.75,size=0.4,style={color=red},opacity=0.3,label=$+$]{pFour}
\Vertex[x=4.0, y=0.75,size=0.4,style={color=red},opacity=0.3,label=$+$]{pFive}
\Edgecolor=red,opacity=0.5(pTwo)
\Edgecolor=red,opacity=0.5(pThree)
\Edgecolor=red,opacity=0.5(pFour)
\Edgecolor=red,opacity=0.5(pFive)
\Edgecolor=red,opacity=0.25,bend=-45(pThree)
\Edgecolor=red,opacity=0.25,bend=45(pFour)
\Edgecolor=red,fontcolor=black,opacity=0.25, bend=-45,label={$\frac{3}{4}\epsilon$}(pFive)
\end{tikzpicture}
\end{center}
\end{document}


\Edge[color=red!25,fontcolor=black, bend=-45,label={$\frac{3}{4}\epsilon$}](pThree)(pFive)– J Leon V. Jul 07 '22 at 17:09label={[styles_for_label]orientation_in_sexagesimal_degrees:text_label}, but in the case of edges it doesn't work... hmm but maybe somebody knows how to. – J Leon V. Jul 07 '22 at 17:31