1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
\documentclass{article}
\usepackage{color}
\definecolor{TextColorA}{gray}{1.0}
\definecolor{TextColorB}{gray}{0.8}
\definecolor{TextColorC}{gray}{0.6}
\definecolor{TextColorD}{gray}{0.4}
\definecolor{TextColorE}{gray}{0.2}
\definecolor{TextColorF}{gray}{0.0}
\definecolor{PageColorA}{gray}{0.0}
\definecolor{PageColorB}{gray}{0.2}
\definecolor{PageColorC}{gray}{0.4}
\definecolor{PageColorD}{gray}{0.6}
\definecolor{PageColorE}{gray}{0.8}
\definecolor{PageColorF}{gray}{1.0}
\begin{document}
\pagecolor{PageColorA}
\textcolor{TextColorA}{Hello world}
\vfill\eject
\pagecolor{PageColorB}
\textcolor{TextColorB}{Hello world}
\vfill\eject
\pagecolor{PageColorC}
\textcolor{TextColorC}{Hello world}
\vfill\eject
\pagecolor{PageColorD}
\textcolor{TextColorD}{Hello world}
\vfill\eject
\pagecolor{PageColorE}
\textcolor{TextColorE}{Hello world}
\vfill\eject
\pagecolor{PageColorF}
\textcolor{TextColorF}{Hello world}
\vfill\eject
\end{document}
|