I'm trying to come up with a nicely formatted work plan as a table, but the coloring of individual cells messes completely the row coloring of the table as the following code shows:
\documentclass[10pt,a4paper]{article}
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor}
\usepackage{booktabs}
\newcommand{\ccell}{\cellcolor{Periwinkle}}
\begin{document}
\begin{table}
\centering
\rowcolors{2}{gray!10}{white}
\begin{tabular}{lrrrrrrrr}
\toprule
Activity & \multicolumn{8}{c}{month range} \\
& \scriptsize{0--6} & \scriptsize{7--12} & \scriptsize{12--18} & \scriptsize{19--24} & \scriptsize{25-30} & \scriptsize{31-36} & \scriptsize{37--42} & \scriptsize{42--48} \\
\toprule
Learn \LaTeX & \ccell \\
Write article & & \ccell & \ccell &\\
Publish process & & & & \ccell& \ccell & \ccell & \ccell \\
\bottomrule
\end{tabular}
\caption{Prospective work plan.}
\label{tab:work_plan}
\end{table}
\end{document}

I thought of using pattern instead and I found this post, but the implementation with tikz seems quite involved. I also thought that maybe it would look nicer to have only a portion of the cell with the patter to make it more subtle, but I have no idea on how to do that.
\\you need all the cells to carry the colour so&&&&&\\for however many cells you need – David Carlisle Mar 24 '15 at 21:08