[Tex/LaTex] Defining Moleskine paper colour

color

I use Moleskine journals and I really like the colour of the paper. I find it quite good for the eyes compared to the pure white, nonetheless I have no idea how to reproduce this color in LaTeX.

An example of the paper can be found here:
enter link description here

I would be very grateful if someone could reproduce this color in TeX as well.

Best Answer

If you have the color then reproducing is not difficult with xcolor package. Here TikZ loads it anyways.

\documentclass[tikz]{standalone}
\definecolor{moleskin}{HTML}{FFF8DC}
\begin{document}
\begin{tikzpicture}
\clip[preaction={fill=moleskin},rounded corners=.5cm] (-5,-3.5) rectangle (5,3.5);
\draw[style=help lines] (-5,-3.5) grid[step=0.3] (5,3.5);
\end{tikzpicture}
\end{document}

enter image description here