[Tex/LaTex] Color text without color package

color

I'm about to submit an article for publication, and I need to color some label text that I'm overlaying on my figures with the overpic package/environment (some labels need to be white to be readable on some figures). Problem is, I just noticed the submission guidelines say no color packages, so the

\usepackage[pdftex]{color}

I had been using is right out. Is there a way to get a specific string (really just single characters) colored white without a color package?

Best Answer

I guess this should receive downvotes instead of upvotes, but anyway:

\documentclass{article}
\begin{document}
% works only if you use PDFTeX or LuaTeX
% Don't do this at home, use \usepackage{xcolor} instead
\chardef\MyArticleWithColor=\pdfcolorstackinit page direct{0 g}
Roses are black
\pdfcolorstack\MyArticleWithColor push {0 0 1 rg}
Violets are blue
\pdfcolorstack\MyArticleWithColor pop
But I am not.
\end{document}

yields

color sample