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
|
\documentclass{article}
\usepackage{color}
\definecolor{mycolorAa}{rgb}{1,0.0,0.0}
\definecolor{mycolorAb}{rgb}{1,0.0,0.2}
\definecolor{mycolorAc}{rgb}{1,0.0,0.4}
\definecolor{mycolorAd}{rgb}{1,0.0,0.6}
\definecolor{mycolorAe}{rgb}{1,0.0,0.8}
\definecolor{mycolorAf}{rgb}{1,0.0,1.0}
\definecolor{mycolorBa}{gray}{0.0}
\definecolor{mycolorBb}{gray}{0.2}
\definecolor{mycolorBc}{gray}{0.4}
\definecolor{mycolorBd}{gray}{0.6}
\definecolor{mycolorBe}{gray}{0.8}
\definecolor{mycolorBf}{gray}{1.0}
\begin{document}
\pagecolor{cyan}
\begin{itemize}
\item \textcolor{mycolorAa}{Hello world}
\item \textcolor{mycolorAb}{Hello world}
\item \textcolor{mycolorAc}{Hello world}
\item \textcolor{mycolorAd}{Hello world}
\item \textcolor{mycolorAe}{Hello world}
\item \textcolor{mycolorAf}{Hello world}
\end{itemize}
\begin{itemize}
\item \textcolor{mycolorBa}{Hello world}
\item \textcolor{mycolorBb}{Hello world}
\item \textcolor{mycolorBc}{Hello world}
\item \textcolor{mycolorBd}{Hello world}
\item \textcolor{mycolorBe}{Hello world}
\item \textcolor{mycolorBf}{Hello world}
\end{itemize}
\end{document}
|