I want the a particular reference in the bibliography list to take on a different color, say, blue. These are some minimum working examples.
This is my latex file:
\documentclass{article}
\usepackage{color}
\usepackage{cite}
\begin{document}
This is my document \cite{fuente} and we have another \cite{nature}
\bibliographystyle{ieeetr}
\bibliography{myreference}
\end{document}
This is the bibtex file:
//myReference.bib file
@article{fuente,
author = {D. de la Fuente and J.G. Castaño and M. Morcillo},
title = {Long-term atmospheric corrosion of zinc},
journal = {Corrosion Science},
volume = {49},
year = {2007},
pages = {1420–1436},
}
@article{nature,
author = {\color{blue}Rosa Rademakers and Manuela Neumann and Ian R. Mackenzie}},
title = {\color{blue}Advances in understanding the molecular basis of frontotemporal dementia - elongated title}},
journal = {\color{blue} {Nature Reviews Neurology}},
volume = {\color{blue}{8}},
year = {\color{blue}{2012}},
pages = {\color{blue}{423-434}},
doi = {\color{blue}{10.1038/nrneurol.2012.117}},
}

I want just the first reference to be blue. How to achieve this?
Find below updated tex file:
\documentclass{article}
\usepackage{color}
\usepackage{cite}
\usepackage{etoolbox}
\renewcommand{\bibitem}[1]{%
\ifstrequal{#1}{nature}
{\color{blue}\mybibitem{#1}}
{\color{black}\mybibitem{#1}}%
}
\begin{document}
This is my document \cite{fuente} and we have another \cite{nature}
\bibliographystyle{ieeetr}
\bibliography{myReference}
\let\mybibitem\bibitem
\end{document}



