I'm using soul's \hl to set background for the paragraph parts and ulem's \uline to underline text.
The problem is what I cant underline text for text with background.
Initial doc:
\documentclass{article}
\usepackage[table]{xcolor}
\usepackage[normalem]{ulem}
\usepackage{soul}
\newcommand{\bg}[2]{\sethlcolor{#1}\hl{#2}}
\definecolor{ColorFg}{HTML}{FFFFFF}
\definecolor{ColorBg}{HTML}{008000}
\begin{document}
{\color{ColorFg}\bg{ColorBg}{Some Text}} another text.
\end{document}

I want to underline Text:
{\color{ColorFg}\bg{ColorBg}{Some \uline{Text}}} another text.
it fails with ! Argument of \UL@on has an extra }.
I tried to use \soulregister{\uline}{1} (solution from this topic) - no errors and no underlined tex.
Is it possible to underline text with background color (maybe I have to use another packages)?
PS soul docs provides solution for nested commands, but it's not useful for me since line breaks will not work.
Thanks.


{\uline{Text Text}}. In this case you can use\mbox{\uline{Text Text}}. It doesn't work, in any case, if the contents of\ulinehas to break a line... – karlkoeller Nov 05 '13 at 17:36\underlineinstead of\ulineas in\hl{highlighted {\underline{highlighted and underlined}} highlighted}– Pierre-Luc Gauthier Mar 03 '15 at 20:49