基於投影機顏色的 tcolorbox 定義有問題

基於投影機顏色的 tcolorbox 定義有問題

我想聲明一個tcolorbox基於投影機中目前使用的顏色主題的顏色。

我嘗試過類似的事情

colbacktitle=\usebeamercolor[bg]{block title alerted}

但它顯示錯誤。因此我使用以下程式碼進行了管理:

\documentclass[t]{beamer}
\usecolortheme{rose}
\usepackage[most]{tcolorbox}

\newtcolorbox{myalertbox}[2][]{%
    code={%
        \usebeamercolor{block title alerted}
        \colorlet{titlebg}{bg}
        \colorlet{titlefg}{fg}
        \usebeamercolor{block body alerted}
        \colorlet{bodybg}{bg}
        \colorlet{bodyfg}{fg}
    },
    colbacktitle=titlebg, 
    coltitle=titlefg, 
    colback=bodybg,
    colupper=bodyfg,
    title=#2,
    boxrule=0pt,
    sharp corners,
    #1
}

\begin{document} 
\begin{frame}{Testing beamer colors in tcolorbox}

\begin{myalertbox}{Alert tcolorbox}
Some text
\end{myalertbox}

\begin{alertblock}{Beamer alert box}
Some text
\end{alertblock}

\end{frame}
\end{document}

產生

在此輸入影像描述

兩個問題:

  1. 為什麼這些盒子顯示不同的顏色?
  2. 您知道在 tcolorbox 定義中使用投影機顏色的更好方法嗎?

答案1

這個問題與以下事實有關:背景顏色被定義為警報顏色和背景的混合,例如bg=alerted text.fg!20!bg。這似乎是一個問題tcolourbox

作為解決方法,在顏色定義中明確使用white(而不是):bg

\documentclass[t]{beamer}
\usecolortheme{rose}
\usepackage[most]{tcolorbox}


\setbeamercolor{block title alerted}{use=alerted text,fg=alerted text.fg,bg=alerted text.fg!20!white}
\setbeamercolor{block body alerted}{parent=normal text,use=block title alerted,bg=block title alerted.bg!50!white}

\newtcolorbox{myalertbox}[2][]{%
    code={%
        \usebeamercolor{block title alerted}
        \colorlet{titlebg}{block title alerted.bg}
        \colorlet{titlefg}{block title alerted.fg}
        \usebeamercolor{block body alerted}
        \colorlet{bodybg}{block body alerted.bg}
        \colorlet{bodyfg}{block body alerted.fg}
    },
    colbacktitle=titlebg, 
    coltitle=titlefg, 
    colback=bodybg,
    colupper=bodyfg,
    title=#2,
    boxrule=0pt,
    sharp corners,
    #1
}

\begin{document} 
\begin{frame}{Testing beamer colors in tcolorbox}

\begin{myalertbox}{Alert tcolorbox}
Some text
\end{myalertbox}

\begin{alertblock}{Beamer alert box}
Some text
\end{alertblock}

\end{frame}
\end{document}

答案2

使用 tcolorbox 複製投影機區塊的外觀和感覺的另一種方法是使用新的 tcolorbox 內部主題(https://www.ctan.org/pkg/beamertheme-tcolorbox)。

主題將用 tcolorboxes 取代標準的 beamer 區塊,但您也可以使用它來定義自己的方塊:

\documentclass[t]{beamer}
\usecolortheme{rose}
\useinnertheme{tcolorbox}

\makeatletter
\newtcolorbox{myalertbox}[2][]{%
    code={%
      \beamer@tcb@colini[ alerted]
    },
    colback=beamer@tcb@bodybg,
    colbacktitle=beamer@tcb@titlebg,
    coltext=beamer@tcb@bodyfg,
    coltitle=beamer@tcb@titlefg,
    before title={\usebeamerfont{block title alerted}},
    before upper={\usebeamerfont{block body alerted}},    
    title=#2,
    #1
}
\makeatother

\begin{document} 
\begin{frame}{Testing beamer colors in tcolorbox}

\begin{myalertbox}{Alert tcolorbox}
Some text
\end{myalertbox}

\begin{alertblock}{Beamer alert box}
Some text
\end{alertblock}

\end{frame}
\end{document}

在此輸入影像描述

相關內容