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
|
\documentclass{article}
\usepackage[dvips,dvipsnames]{color}
\usepackage{colordvi}
\usepackage{html}
\bodytext{ TEXT = white
BGCOLOR = black
}
\color[named]{TealBlue}
\pagecolor[named]{SkyBlue}
\subdef{rgb .2 .4 .1}
\begin{document}
\RedOrange{Reddish Orange \globalColor{...reverting to normal.}}
{\textYellow Yellow}
\RedOrange{Reddish Orange \globalColor{...reverting to normal.}}
\textColor{.2 .3 .4 .1} coloured
\Color{.2 .3 .4 .1}{coloured}
\textRhodamine
Here is some coloured text.
What happens to \colorbox{red}{this box}?
What happens to \fcolorbox{red}{green}{this box}?
\color[cmyk]{.3,.3,.3,.2} light gray
\color[gray]{.3} gray
\color[rgb]{.3,.3,.3} gray
\textcolor{red}{...and some red text...}
\Plum{And some more text.}
\end{document}
|