Is it possible to render a PDF in sepia tones, both the font color and overall document background? Preferably using pdflatex.
The final effect could be something like this screenshot of Pocket in sepia mode.

Is it possible to render a PDF in sepia tones, both the font color and overall document background? Preferably using pdflatex.
The final effect could be something like this screenshot of Pocket in sepia mode.

With the standard xcolor package, you can set the background color of your document using \pagecolor, and the text color using \color.
Here's a sample using the colors from your screenshot:

\documentclass[11pt]{article}
\usepackage{xcolor}
\definecolor{myBGcolor}{HTML}{F6F0D6}
\definecolor{myTextcolor}{HTML}{4F452C}
\pagecolor{myBGcolor}
\color{myTextcolor}
\begin{document}
When people face an uncertain situation\ldots
\end{document}
\usepackage[dvipsnames]{xcolor} \color{Sepia} and for the background I like \definecolor{fondpaille}{cmyk}{0,0,0.1,0} \pagecolor{fondpaille!90!black}
– Alain Matthes
Jun 19 '12 at 16:13
.pdffile to ImageMagick'sconvertand apply the-sepia-toneeffect, say$ convert -sepia-tone 80% -density 400 mydoc.pdf -resize 25% newdoc.pdf. The drawback of this approach is that ImageMagick will convert every single page of the document to an image, apply the sepia effect and then add it to the final.pdffile (not to mention the huge file size). Some screenshots from Marco'smdframedmanual: here and here.:)– Paulo Cereda Jun 19 '12 at 11:40