I have been trying to figure out why isn't the text color in a titleless tcolorbox frame rendered black in some cases in a beamer presentation. This occurs only with certain themes (Madrid, Ilmenau, Copenahagen, ...).
Consider the following MWE:
\documentclass{beamer}
\usetheme{Copenhagen}
\usepackage{tcolorbox}
\begin{document}
\title{Title}
\author{Author}
\date{\today}
\frame{\titlepage}
\begin{frame}
\begin{tcolorbox}
This is a text that should have been black.
\end{tcolorbox}
\end{frame}
\end{document}
The second slide is rendered thus:
However, if I add a title to the tcolorbox frame, the text color turns out black. Also, and strangely enough, if I remove the presentation's titlepage, the text color is also rendered black. Like so:
\documentclass{beamer}
\usetheme{Copenhagen}
\usepackage{tcolorbox}
\begin{document}
\begin{frame}
\begin{tcolorbox}
This is a text that should have been black.
\end{tcolorbox}
\end{frame}
\end{document}
Which is rendered:
Any ideas as to what might be going on in here?



beamercolorbox, but unfortunately I cannot find this question anymore – samcarter_is_at_topanswers.xyz Jan 25 '17 at 19:19