Last xe(la)tex:
XeTeX, Version 3.14159265-2.6-0.99991 (preloaded format=xelatex 2014.6.19)
(the one shipped with TeX Live 2014) colors text in white in some circumstances: in the following MWE file compiled with xelatex, the "Lorem Ipsum" text after the outer tcolorbox environment on page 2 is colored in white.
\documentclass{article}
\usepackage{lipsum}
\usepackage{tcolorbox}
%
\tcbuselibrary{breakable}
%
\begin{document}
%
\rule{0.4pt}{17cm}
%
\begin{tcolorbox}[breakable]
Foo.
\begin{tcolorbox}
foo
foo
foo
foo
\end{tcolorbox}
\end{tcolorbox}
% \color{black}%
\lipsum
\end{document}
It must be noticed that the trouble still arises if the \color{black} is uncommented but doesn't arise:
with older
xe(la)tex:XeTeX, Version 3.1415926-2.5-0.9999.3 (format=xelatex 2013.7.9)(e.g. the one shipped with TeX Live 2013), even with
tcolorboxpackage shipped with TeX Live 2014 (version 3.05): hencetcolorboxseems to not be responsible of the trouble by itself,- if the file is compiled with
pdflatex, - in the MWE above if the
breakableoption of the outertcolorboxenvironment is dropped.
\lipsum[1]instead shows the problem too. The problem seems to be with xdvipdfmx (which is newer in TL14 than in miktex). If I compile a xdv created by TL14 with the xdvipdfmx of miktex the output is fine. Also the color reappears if on use the-coption of xdvipdfmx. I suggest that you make a bug report attex-k@tug.org. – Ulrike Fischer Jun 23 '14 at 08:53