I want to achieve a table with: 1. a global tabulinesep 2. the left column in bold 3. The top row bold, white and a red panel However when I add rowfont the tabulinesep breaks down. How do I do this?
Preamble
\usepackage{colortbl}
\usepackage{tabu}
\global\tabulinesep=3mm %Minimal vertical space in tables
Main
\begin{table}[H]
\begin{tabu}[X]{|>{\bfseries}X[4]|X[2c]|X[4]|}
\everyrow{\hline}
\rowcolor{red}
\rowfont{\color{white}\bfseries}
text & text & text \\
text & text & text \\
text & text & text \\
text & text & text \\
\end{tabu}
\end{table}
