I would like to color a part of curve, as in the picture. I used the following code
\documentclass{article}
\usepackage{tikz,amsmath, amssymb,bm,color}
\usetikzlibrary{calc}
\usetikzlibrary{intersections}
\usetikzlibrary{shapes,arrows,arrows.meta,angles,quotes,patterns,patterns.meta}
\begin{document}
\begin{tikzpicture}[>=stealth']
%\tikzstyle{every node}=[font=\footnotesize]
\draw[->](-0.5,1.5)--(9.5,1.5) node[right]{$u$};
\draw[->](0,-2)--(0,4.75) node[left]{$v$};
\draw [thick] plot [domain=0:2](0.5,2.5)
.. controls ++(60:2.5) and ++(120:1.5) .. (3.5,3.5)
.. controls ++(-60:1) and ++(-120:1) .. (5,3.5)
.. controls ++(60:1.5) and ++(120:1.5) .. (7,2.5)
.. controls ++(-60:1) and ++(-160:1) .. (9,2);
\begin{scope}[yscale=-1,shift={(0,-3)}]
\draw [thick] (0.5,2.5)
.. controls ++(60:2.5) and ++(120:1.5) .. (3.5,3.5)
.. controls ++(-60:1) and ++(-120:1) .. (5,3.5)
.. controls ++(60:1.5) and ++(120:1.5) .. (7,2.5)
.. controls ++(-60:1) and ++(-160:1) .. (9,2);
\end{scope}
\end{tikzpicture}
\end{document}

