I have the following table:
\documentclass[a4paper, twoside]{report}
\usepackage{amsmath}
\usepackage[utf8]{inputenc}
\usepackage{booktabs}
\usepackage[T1]{fontenc}
\usepackage{dcolumn, bigdelim}
\begin{document}
\begin{table}
\centering
\begin{tabular}{*{5}{D{.}{.}{1}@{\hskip 7.5pt}}cc}
\toprule
x_1 & x_2 & x_3 & x_4 & \tabularnewline
\midrule
0.65 & -2.26 & 0.71 & 0.97 & \rdelim\}{5}{14mm}[\parbox{20.5mm}{a}] \tabularnewline[5pt]
1.00 & -0.25 & 0.86 & 0.57 &\tabularnewline[5pt]
-2.76 & -0.17 & 0.44 & 0.48 &\tabularnewline[5pt]
-2.76 & -0.17 & 0.44 & 0.48 &\tabularnewline[5pt]
\midrule
-2.96 & -0.17 & 0.42 & 0.48 &\rdelim\}{5}{14mm}[\parbox{20.5mm}{b}] \tabularnewline[5pt]
-3.76 & -0.17 & 0.42 & 0.48 &\tabularnewline[5pt]
-3.56 & -0.17 & 0.42 & 0.48 &\tabularnewline[5pt]
-3.76 & -0.17 & 0.42 & 0.48 &\tabularnewline[5pt]
\bottomrule
\end{tabular}
\end{table}
\end{document}
I would like to colour the text of some cells; e.g. all "0.42", how can I do that? I tried \color{red}{0.42} but it gave me some errors.
Thanks for any help!

\documentclass(you can use thearticleclass unless the problem is specific to a given class) and the appropriate packages that sets up the problem.While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem as opposed to figuring out exactly which packages are required.
– Peter Grill Aug 28 '19 at 00:15\color{}{}within a\multicolumnso that it id not bothered by theDcolumn type. But, this looses the alignment. – Peter Grill Aug 28 '19 at 00:35\color{}{}will work, although it should just be\color{}(as it takes only one parameter). I think the problem is thatDcolumn type has an issue parsing that. – Peter Grill Aug 28 '19 at 00:42\multirow{1}{*}{\color{red}{0.42}}but it then destroys the brace alignment on the right, as you mentioned... – Humanoid Aug 28 '19 at 00:55