JeT
How can I match the color of the items with the color of the logo of the `tcolorbox` ?
![image.png](/image?hash=953afc1a28e54754d4009d90049176af52aaaa8fe62017173a380831701cc812)
```
\documentclass{beamer}
\usepackage{tikz,tcolorbox}
\usetikzlibrary{shapes,calc}
\usepackage{fontawesome}
\tcbuselibrary{skins}
\usecolortheme{crane}
\newtcolorbox{important}[1][]{
enhanced,
arc=5mm,
drop lifted shadow=red!50,
colback=red!5,
colframe=white,
leftrule=0mm,%
detach title,
overlay unbroken and first ={
\node[red,anchor=north east,scale=1.3]
at (frame.north west) {\faInfoCircle};
}
}
\begin{document}
\begin{frame}
\begin{important}
L'assurance vie a en réalité deux principes
\begin{enumerate}
\item quand elle est une assurance
\begin{itemize}
\item son but est de constituer une épargne générant des intérêts, et servant au moment du dénouement, la retraite par exemple, à financer une rente viagère ou à percevoir un capital pour un projet
\end{itemize}
\item quand elle est une assurance décès
\begin{itemize}
\item elle permet de léguer une partie de son patrimoine à un bénéficiaire désigné dans le contrat.
\end{itemize}
\end{enumerate}
\end{important}
\end{frame}
\end{document}
```
Top Answer
samcarter
You can use the `before upper` key to change the `item` beamer colour, which is the parent of both the `itemize item` and `enumerate item`:
```
\documentclass{beamer}
\usepackage{tikz,tcolorbox}
\usetikzlibrary{shapes,calc}
\usepackage{fontawesome}
\tcbuselibrary{skins}
\usecolortheme{crane}
\newtcolorbox{important}[1][]{
before upper={\setbeamercolor{item}{fg=red}},
enhanced,
arc=5mm,
drop lifted shadow=red!50,
colback=red!5,
colframe=white,
leftrule=0mm,%
detach title,
overlay unbroken and first ={
\node[red,anchor=north east,scale=1.3]
at (frame.north west) {\faInfoCircle};
}
}
\begin{document}
\begin{frame}
\begin{important}
L'assurance vie a en réalité deux principes
\begin{enumerate}
\item quand elle est une assurance
\begin{itemize}
\item son but est de constituer une épargne générant des intérêts, et servant au moment du dénouement, la retraite par exemple, à financer une rente viagère ou à percevoir un capital pour un projet
\end{itemize}
\item quand elle est une assurance décès
\begin{itemize}
\item elle permet de léguer une partie de son patrimoine à un bénéficiaire désigné dans le contrat.
\end{itemize}
\end{enumerate}
\end{important}
\end{frame}
\end{document}
```
![Screen Shot 2021-05-03 at 13.31.25.png](/image?hash=8c8bb88ef1a9e2c1ce0473e638285005437b56e624ceedeb194074f09b4828a8)