Quero declarar um tcolorbox
com cores baseadas no tema de cores atual usado no beamer.
Eu tentei com algo como
colbacktitle=\usebeamercolor[bg]{block title alerted}
mas mostra erros. Portanto, consegui com o seguinte código:
\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}
que produz
Duas questões:
- Por que essas caixas mostram cores diferentes?
- Você conhece uma maneira melhor de usar as cores do beamer nas definições do tcolorbox?
Responder1
O problema está relacionado ao fato de as cores de fundo serem definidas como uma mistura da cor do alerta e do fundo, por exemplo bg=alerted text.fg!20!bg
. Isso parece ser um problema para o tcolourbox
.
Como solução alternativa, use explicitamente white
(em vez de bg
) na definição de cor:
\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}
Responder2
Outra maneira de replicar a aparência dos blocos beamer com um tcolorbox é usar o novo tema interno tcolorbox (https://www.ctan.org/pkg/beamertheme-tcolorbox).
Este tema substituirá os blocos padrão do beamer por tcolorboxes, mas você também pode usá-lo para definir suas próprias caixas:
\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}