[Tex/LaTex] Change color of deleted text in changes package

changescolor

Using the changes package, usually deleted text is colored in blue, how can I change the color to red?

\deleted{30 April 2017}

Defining an author with

\definechangesauthor[color=orange]{.}

is not the solution I'm looking for, since it also prints the id next to the change.

Best Answer

Quick hack:

\documentclass{article}

\usepackage{xcolor}
\definecolor{blue}{rgb}{1.,0,0}
\usepackage{changes}
\definecolor{blue}{rgb}{0,0,1.}

\begin{document}

\deleted{30 April 2017}

\textcolor{blue}{text}

\end{document}

[No cats were harmed while writing this answer :) ]