I would like to draw two lines side by side, like this:
It's difficult to draw them separately when the lines are bended in some place. I tried the double option, but it would bring three lines.
This is my code (draw the two lines separately):
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\definecolor{line3}{cmyk}{0.02,0.16,1,0}
\definecolor{line4}{cmyk}{0.86,1,0.03,0.01}
\begin{tikzpicture}
\draw[color=line3,line width=5pt,rounded corners] (0,0) -- ++(1.05,1.05) -- ++(1,0);
\draw[color=line4,line width=5pt,rounded corners] (3.535pt,-3.535pt) -- ++(1,1) -- ++(1,0);
\end{tikzpicture}
\end{document}

