I'm using the Songs package and would like to have rounded corners for the song number and center the song number inside the rounded square. I already changed the grey color to orange.
- How to customize with rounded corners?
- How to vertically and horizontally center the number?
See below my MWE and its output:
\documentclass{article}
\usepackage[chorded]{songs}
\usepackage{xcolor}
\definecolor{g_songnumbercolor}{RGB}{255, 142, 39}
\renewcommand{\snumbgcolor}{g_songnumbercolor}
\renewcommand{\printsongnum}[1]{\color{white}\bfseries\Huge#1}
\noversenumbers
\setlength{\sbarheight}{0pt}
\begin{document}
\begin{songs}{}
\beginsong{Some song title}[sr={in D}, by={Some other info}]
\beginverse
[D]Some lyrics
Again [A]some other lyrics
\endverse
\endsong
\beginsong{Some song title 2}[sr={in F}, by={Some other info}]
\beginverse
[F]Some lyrics
Again [A]some other lyrics
\endverse
\endsong
\end{songs}
\end{document}


