I'm using songs.sty to create a songbook.
I figured out how to change the background color of the song number boxes by redefining \snumbgcolor like \renewcommand{\snumbgcolor}{green}.
I can also change the background color in the index with \renewcommand{\idxbgcolor}{green}.
Is there an easy way to change the font color for these to white?
MWE:
\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[usenames]{xcolor}
\usepackage[lyric]{songs}
\renewcommand{\snumbgcolor}{green}
\begin{document}
\begin{songs}{}
\beginsong{Bella Notte}[sr={\footnotesize Mel: Bella Notte}, cr={}]
\beginchorus
Nu er det nat, en vidunderlig nat,
åh så stille Bella Notte
\endchorus
\beginverse
Stjernernes skær, bringer himlen så nær,
jeg vil drømme Bella Notte
\endverse
\endsong
\end{songs}
\end{document}

