I have an example of some code that colors a column, and I show here that the uncolored column has less spacing between rows. How do I color my column text without changing the spacing between rows?
\documentclass{article}
\usepackage{array}
\usepackage{xcolor}
\begin{document}
\begin{tabular}{>{\color{red}}p{2cm}>{\color{red}}p{2cm}}
one & two \\
three & four \\
five & six\\
seven & eight \\
nine & ten
\end{tabular}
\begin{tabular}{p{2cm}p{2cm}}
one & two \\
three & four \\
five & six\\
seven & eight \\
nine & ten
\end{tabular}
\end{document}




\textcolor{mytext}rather than{\color{}mytext}in the actual table, but quite laborious to put that around each entry. – User0 Jun 20 '18 at 01:01{\color{red} \begin{tabular} ... \end{tabular} }– David Jun 20 '18 at 06:11