PDF Rendering – Is it Possible to Render a PDF in Sepia Tones?

pdfpdftex

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.

Screenshot of Pocket app with sepia theme

Best Answer

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}
Related Question