I was attempting to get an effect similar to this cover that is found here:
I started with the code found here that draws a grid with colors. How can I go about completing the code to get the output like that shown in the picture above?
Here is the code that I have so far:
\documentclass[11pt,letterpaper]{article}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage{graphicx}
\pgfmathdeclarerandomlist{MyRandomColors}{%
{red}%
{red!25}%
{magenta}%
{magenta!25}%
{olive}%
{olive!25}%
{brown}%
{brown!10}%
{violet}%
{violet!25}%
{gray}%
{purple}%
{yellow}%
{orange}%
{orange!25}%
{cyan}%
{green}%
}%
\newcommand*{\GridSize}{10}
\newcommand*{\ColorCells}{%
\foreach \y in {1,...,\GridSize} {
\foreach \x in {1,...,\GridSize} {
\pgfmathrandomitem{\RandomColor}{MyRandomColors}
\draw [fill=\RandomColor, fill opacity=0.2, draw=none, ultra thick]
(\x-1,\y-1) rectangle (\x,\y);
}%
}%
}%
\listfiles
\begin{document}
\pagestyle{empty}
\begin{tikzpicture}[scale=1]
\begin{scope}[thick]
\ColorCells
\draw (0, 0) grid (\GridSize, \GridSize);
\coordinate (input);
\end{scope}
\end{tikzpicture}
\rotatebox{90}{\textcolor[rgb]{0.01,0.50,1.00}{\fontsize{50}{120}\selectfont{the name of the course}}}
{\fontsize{50}{120}\selectfont{name of authorities}}
\end{document}


LaTeX Font Warning: Font shapeOT1/cmr/m/n' in size <50> not available (Font) size <24.88> substituted on input line 51.`. Also, Can you tell me how to get the grid lines in a thick white color? – Joe Jan 25 '16 at 02:40