I'm making a poster (using baposter) where I wish to include some microscopy images. To make the fluorescent signals stand out better, I changed the background of that cell to "pitchblack", which I have defined as
\definecolor{pitchblack}{cmyk}{0,0,0,1}
I've also tried this with
\definecolor{pitchblack}{rgb}{0,0,0}
However, with my microscopy images in the foreground, I find out that "black" isn't really black:

The baposterclass brings xcolor and tikz along for the ride, so I'm assuming my color issue is with those packages. So my question is, how I can make the "black" of the background frame black enough to match the background of these images?
Full code of the frame:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\headerbox{Preliminary Images}{name=prelim,column=2,row=0,boxColorOne=pitchblack}{
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{center}
\renewcommand{\arraystretch}{0}
\begin{tabular}{@{}c@{}c@{}c@{}}
\raisebox{-2ex}{
\parbox[t]{0.25\textwidth}{\scriptsize\color{white} Representative volume renderings of HeLa cells imaged using TALEs
against the $\beta$-globin locus. Signals are approximately 0.3$\mu$m
in diameter.}} &
\imagetop{\includegraphics[width=0.3\textwidth]{dataimages/5_02_volume_view.jpg}} &
\imagetop{\includegraphics[width=0.3\textwidth]{dataimages/5_04_volume_view.jpg}} \\
\imagetop{\includegraphics[width=0.3\textwidth]{dataimages/5_05_volume_view.jpg}} &
\imagetop{\includegraphics[width=0.3\textwidth]{dataimages/5_07_volume_view.jpg}} &
\imagetop{\includegraphics[width=0.3\textwidth]{dataimages/5_10_volume_view.jpg}}
\end{tabular}
\end{center}
}
As a final note, the problem appears to be independent of the pdf viewer (i.e. it looks this way in evince,acroread,and gimp).

geometryerrors after wrapping your frame code between\documentclass{baposter}\begin{document}and\end{document}. – Qrrbrbirlbel Oct 05 '12 at 18:23blackcolor already defined in xcolor? I mean something like (in tikz)\fill[black] (0,0) circle 1;... this should give you real black. If not, then there will definitely be some more examination and a MWE needed. – Benedikt Bauer Oct 05 '12 at 18:25baposterloadsxcolorby default with the optioncmyk. All color models used now don't get it right. If you load the package optionrgband use\definecolor{pitchblack}{gray}{0}(or the equivalent RGB command, or the already definedblack) it is pitchblack. – Qrrbrbirlbel Oct 05 '12 at 18:34