[Tex/LaTex] How to change reference color to blue

citingcolorrevtex

I downloaded a template from Journal of Applied Physics – Scitation.

You can see the template from this link http://publishing.aip.org/authors/preparing-your-manuscript

The problem is that the reference colour in this template is not blue, can you help me to change it to blue. I did several attempts but all of them did not work.

Here is the code that may help for solving:

\listfiles
\documentclass[%
 reprint,%
%secnumarabic,%
 amssymb, amsmath,%
 aip,cha,%
%groupedaddress,%
%frontmatterverbose,
]{revtex4-1}
\usepackage{float}
\usepackage{docs}%
\usepackage{bm}%
\usepackage[colorlinks=true,linkcolor=blue]{hyperref}%
\usepackage{graphicx}
%\nofiles
\expandafter\ifx\csname package@font\endcsname\relax\else
 \expandafter\expandafter
 \expandafter\usepackage
 \expandafter\expandafter
 \expandafter{\csname package@font\endcsname}%
\fi
\hyphenation{title}
\pagestyle{empty}
\begin{document}

Best Answer

From the questions's MWE:

\usepackage[colorlinks=true,linkcolor=blue]{hyperref}%

Citation links are configured via option citecolor:

citecolor=blue

Or if all kind of links should be blue (since hyperref 2011-02-05 v6.82a):

allcolors=blue
Related Question