I would like to produce either a tcolorbox or a tikzpicture that closely resembles the following image:
The following code produces as reasonable facsimile, but not great:
\documentclass[12pt]{book}
\usepackage{tikz}
\usetikzlibrary{decorations.pathmorphing}
\usepackage{xcolor}
\definecolor{parchment_yellow}{RGB}{245,233,175}
\usepackage{lipsum}
\begin{document}
\thispagestyle{empty}
\begin{center}
\begin{tikzpicture}[pencildraw/.style={ %
decorate,
decoration={random steps,segment length=2pt,amplitude=2.25pt}
} %
]
\node[
preaction={fill=black,opacity=.5,transform canvas={xshift=1.5mm,yshift=-1.5mm}},
pencildraw,draw,fill=parchment_yellow,text width=0.92\textwidth,inner sep=5mm,align=justify]
{\fontsize{15}{18}\selectfont {\bf \lipsum[3]}};
\end{tikzpicture}
\end{center}
\end{document}
Can LaTeX reproduce the above parchment image with its visual effects; or, can the above image be used as the background for the above tikzpicture? Finally, can anyone suggest a better color approximation to the parchment image than the one I came up with \definecolor{parchment_yellow}{RGB}{245,233,175}?


