I can't figure out the syntax for a colored dotted page. For instance - bullet journals are a page of dots but in black. What syntax do I use to change the color of the dots to say, light blue? This is for a full page. I have this, but I don't know how to change the color of the dots to a different color. Please help!
Code: Select all
\documentclass{article}
\pagenumbering{gobble}
\usepackage[landscape, margin=0.2in]{geometry}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[scale=.6]
\foreach \x in {0,...,43}
\foreach \y in {0,...,34}
{
\fill (\x,\y) circle (0.03cm);
}
\end{tikzpicture}
\end{document}