Beamer e biblatex: mudando a cor da revista ou editora

Beamer e biblatex: mudando a cor da revista ou editora

Estou usando o Beamer com biblatex.

Quando uso o código abaixo, ele produz o seguinte slide.

Gostaria de mudar a cor da revista e da editora (se só for possível ter a mesma cor, para mim está bom). É possível?

insira a descrição da imagem aqui

O código

\documentclass[10pt]{beamer}
\usepackage{beamerthemesplit} 
\usepackage[english,french]{babel}
\usepackage{xcolor} 
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc} 
\usepackage[backend=bibtex,style=authoryear, defernumbers=true]{biblatex}
\addbibresource{bib.bib}
\usetheme{default}

\begin{document}

\begin{frame}
\begin{itemize}
\item First category
\nocite{*}
\printbibliography[prefixnumbers=FC, heading=none,keyword=fstcat]
\item Second category
\printbibliography[prefixnumbers=SC, heading=none,keyword=sndcat]
\end{itemize}
\end{frame}

\end{document}

O arquivo .bib

@article {test1,
AUTHOR = {LastName1, FirstName1},
TITLE = {A long title that says nothing interesting},
JOURNAL = {Big journal},
VOLUME = {1},
YEAR = {1111},
NUMBER = {1},
PAGES = {1--111},
keywords={fstcat}
 }

@book {test2,
AUTHOR = {LastName2, FirstName2},
TITLE = {A long title that says nothing interesting again},
PUBLISHER = {Big publisher},
YEAR = {1111},
keywords={sndcat}
 }

Responder1

\setbeamercolor{bibliography entry note}{fg=red}

informação relacionada