My problem sounds rather simple, but I couldn't find a solution yet.
I'm trying to typeset a long, colored title (which spans over two lines), such that the second line is right-aligned.
In other words, I'm looking for something like the multline environment, but for colored text.
Sounds easy, but neither the general solutions for right-aligned text here (nor here) work.
\documentclass[a4paper, 11pt, ngerman]{scrartcl}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenx}
\renewcommand*\sfdefault{phv}
\parindent0mm
\usepackage[a4paper, left=12.7mm, right=12.7mm, top=12.7mm, bottom=13mm]{geometry}
\usepackage{showframe}
\usepackage{setspace}
\onehalfspacing
\usepackage{xcolor}
\title{Alignment inside Textcolor}
\author{rotton}
\date{}
\begin{document}
{\sffamily
%% Not working as expected
\textcolor{blue}{\LARGE Richard David Precht: Wer bin ich -- und wenn ja, wie viele? \\
{\raggedleft{} Eine philosophische Reise}}
%% Not working as expected
\textcolor{red}{\LARGE Richard David Precht: Wer bin ich -- und wenn ja, wie viele? \\
\hfill Eine philosophische Reise}
%% Working, but with big vertical offset
\textcolor{green}{\LARGE Richard David Precht: Wer bin ich -- und wenn ja, wie viele? \\
\begin{flushright} Eine philosophische Reise \end{flushright}}
%% Working, but not inside textcolor
{\LARGE Richard David Precht: Wer bin ich -- und wenn ja, wie viele? \par
\hfill Eine philosophische Reise}
}
Etwas mehr Text.
\end{document}
What I'm trying to achieve should look like the fourth example, but with colored text:

{\color{red}\LARGE Richard David Precht: Wer bin ich -- und wenn ja, wie viele? \par \hfill Eine philosophische Reise}– Schweinebacke Feb 07 '17 at 17:18\parwork inside\color, but gives an error inside\textcolor? – winkmal Feb 07 '17 at 17:31\coloris a switch.\textcoloris a command with argument and not long. So it does not allow\parinside the text argument. – Schweinebacke Feb 07 '17 at 17:38\\nor\newline{}work instead of\par? – winkmal Feb 07 '17 at 17:47