Скрыть цвет строки для заголовка столбца с помощью табу

Скрыть цвет строки для заголовка столбца с помощью табу

rowcolor необходимо скрыть только для заголовка столбца с помощью tabuпакета, первая строка тела таблицы после заголовка столбца должна начинаться с «голубого» цвета, есть ли какой-либо вариант?

hiderowcolorsа showrowcolorsопция не работает в табу?

\documentclass{book}
\usepackage{tabu}
\usepackage[table]{xcolor}
\begin{document}

\def\tabuprocesstable#1#2#3{
\taburowcolors[1]1{cyan .. white}\fontsize{8bp}{10bp}\selectfont%
#1\par%
#2\par%
#3%
}

\def\colhead{\bfseries\sffamily}

\tabuprocesstable{}{\begin{tabu}{p{100pt}p{100pt}}
\tabucline{-}
\colhead{Column head 1}&\colhead{Column head 2}\\
Total non-current&Employee benefits\vphantom{yg}\\
Total non-current&Employee benefits\\
Total non-current&Employee benefits\\
Total non-current&Employee benefits\\
\tabucline{-}
\end{tabu}}{}

\bigskip\bigskip
\tabuprocesstable{}{\begin{tabu}{p{100pt}p{100pt}}
\tabucline{-}
%\hiderowcolors
\colhead{Column head 1}&\colhead{Column head 2}\\
\colhead{Column head 3}&\colhead{Column head 4}\\
%\showrowcolors
Total non-current&Employee benefits\vphantom{yg}\\
Total non-current&Employee benefits\\
Total non-current&Employee benefits\\
Total non-current&Employee benefits\\
\tabucline{-}
\end{tabu}}{}
\end{document} 

Связанный контент