[Tex/LaTex] Change the color of numberings in inline itemization

colorlistsparalist

 \begin{inparaenum}[1)]
    \item  number one item
    \item  number two item
    \item  number three item
 \end{inparaenum}

Is it possible to change the color of the number, When I use \textcolor{red}{1)} it is showing red color but it stopped itemizing. So instead of 1,2 3 I just got 1,1,1, for all the items.

Best Answer

This works for me:

\begin{inparaenum}[\color{red} 1)]
    \item  number one item
    \item  number two item
    \item  number three item
 \end{inparaenum}