<div dir="ltr">I am trying to make a standardised box environment for a document. In the preamble I am describing the features of the \tcolorbox and calling in mybox. <div><br></div><div>I want all the text in the mybox to be smaller than the normal text in the document. </div><div><br></div><div>While I am able to do it for each box using \tcbfontsize{0.8} in the box, I am unable to put it as a <i>general </i>feature when I am defining "mybox"</div><div><br></div><div><div>The following is my code</div><div>====================</div><div><br></div><div>\documentclass[12pt,a4paper]{book}</div><div>\usepackage{tcolorbox}</div><div>\usepackage[english]{babel}</div><div>\usepackage{blindtext}</div><div>\usepackage{hyperref}</div><div><br></div><div><br></div><div>\tcbuselibrary{most}</div><div>\newtcolorbox[auto counter, list inside=boxes]{mybox}[2][]{%</div><div>  arc=0mm, enhanced, breakable, floatplacement=tp,float,</div><div>  colback=blue!0!white,colframe=blue!65!black, fonttitle=\bfseries,</div><div>  title=Box~\thetcbcounter: #2, #1}</div><div><br></div><div><br></div><div>\title{Tcolorbox:\\</div><div>  Minimum Working Example}</div><div>\author{~}</div><div><br></div><div>\begin{document}</div><div>  \begin{mybox}[label={tt:test-box}]{Caption for test-box}</div><div>{\tcbfontsize{0.8}\blindtext}</div><div>  \end{mybox}</div><div>\end{document}</div></div><div><br></div></div>