I am using the tcolorbox to provide some beautiful frames around certain parts of my document; I use the parskip to give nice spacing between paragraphs.
When I have more than one paragraph inside a tcolorbox the parskip is not obeyed, as highlighted in the screen shot below. I have searched the manual, but it seems to describe before and after skips, but not 'during'. How can this be fixed?

Here's a complete MWE that demonstrates the problem:
% arara: pdflatex
\documentclass{article}
\usepackage{tcolorbox}
\usepackage{lipsum}
\usepackage{parskip}
\begin{document}
\begin{tcolorbox}
\lipsum[1]
\lipsum[2]
\end{tcolorbox}
\lipsum
\end{document}


\KOMAoptions{parskip = half-}inside thetcolorboxenvironment. – Manuel Jan 19 '14 at 19:21\parskip, it's easier.;-)– egreg Jan 19 '14 at 20:56parskippackage? – cmhughes Jan 20 '14 at 03:20