如何设置tcolorbox中titlerule和分隔线的不透明度?

如何设置tcolorbox中titlerule和分隔线的不透明度?

我想要一个简洁的方法来设置 的不透明度titlerule和 的分隔线。 (版本 6.0.1 的第 536 页)\tcblower中提到的所有键均不起作用。tcolorbox

因为titlerule,这是可能的

titlerule style=SpringGreen3!75

对于分离线

segmentation code={\path[draw=green, dash dot, opacity=0.75] (segmentation.west) -- (segmentation.east);}

是否可以通过tcolorbox其自身提供的键来修改它?我想要这个,因为我定义了自定义tcolorbox使用\tcbset,并希望所有不透明度规范都集中在一个地方

\documentclass[11pt, a4paper]{book}

\usepackage[x11names]{xcolor}

\usepackage{blindtext}

\usepackage{tcolorbox}
\tcbuselibrary{skins}

\begin{document}

\begin{tcolorbox}[title={Transparent box}, enhanced jigsaw, titlerule style=SpringGreen3!75,
    segmentation code={\path[draw=green, dash dot, opacity=0.75] (segmentation.west) -- (segmentation.east);}, opacitylower=0
    ]
    
    \blindtext[1]
    \tcblower
    \blindtext[1]
    
\end{tcolorbox}
    
\end{document}

相关内容