Considering the following MWE I am searching for a possibility to change the format of the backreference.
\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@book{companion,
author={Frank Mittelbach and Michel Goossens},
title={The \LaTeX{} Companion},
year={2008},
publisher={Addison-Wesley},
isbn={0-201-36299-6},
}
\end{filecontents*}
\documentclass{scrartcl}
\usepackage{polyglossia}
\setdefaultlanguage[variant=us]{english}
\usepackage{blindtext}
\usepackage[backend=biber,hyperref,backref,backrefstyle=none]{biblatex}
\DefineBibliographyStrings{english}{%
backrefpage = {\lowercase{s}ee p.},%
backrefpages = {\lowercase{s}ee pp.}%
}
\bibliography{\jobname.bib}
\usepackage{hyperref}
\begin{document}
\blindtext
\cite{companion}
\printbibliography
\end{document}
This gives me the output (I am running it with lualatex but that should not be a problem)

I am now searching for a possibility to change the format of the backreference in the bibliography (the (see p. 1). I thought of changing its color or printing it in an italic font. Is there a simple way to achieve this?

\mkbibparens{{\color{red}\mkbibemph{#1}}}to{\color{red}\mkbibparens{\mkbibemph{#1}}}I was also able to have the brackets colored. Thank you for your quick answer. – Stephan Lukasczyk Oct 10 '15 at 11:44