[Tex/LaTex] Color text in a table

colortables

Is there a way to color text in an entire table without using environment tabular? For example, change the color of text in every cell to red.

Best Answer

Do you thing on something like this:

enter image description here

\documentclass{standalone}
    \usepackage[table]{xcolor}

    \begin{document}
\begin{tabular}{>{\color{red}}c >{\color{red}}c}
    \hline
A   &   B   \\
C   &   D   \\
    \hline
\end{tabular}
    \end{document}

If you wish in red (or other selected color) entire table (with lines), than before table just put command \color{red}