[Tex/LaTex] Change the color of the main title without redefining \maketitle

colortitles

I'm looking for a way to change the color of the main title of a document without redefining the \maketitle. A Google search only yields how to systematically change the section titles that does not include the main title.

Best Answer

Here is a solution

\documentclass{article}
\usepackage{xcolor}
\title{\textcolor{blue}{The title}}
\author{Me}

\begin{document}
\maketitle
\end{document}

Update if ams class used

\documentclass{amsart}
\usepackage{xcolor}
\colorlet{BLUE}{blue}
\title{\textcolor{blue}{The title}}
\author{Me}

\begin{document}
\maketitle
\end{document}
Related Question