I want to be able to define custom block environments in beamer.
That is, where for now I use alertblock and exampleblock I would rather use problock and conblock for a pro/con discussion.
This just seems more appropriate because a con is not an alert and a pro is not an example.
The code should then look something like this:
\begin{problock}{Pros}
\begin{itemize}
\item Good reason
\item Better reason
\end{itemize}
\end{problock}
\begin{conblock}{Contra}
\begin{itemize}
\item Small drawback
\item Big drawback
\end{itemize}
\end{conblock}
For each defined block environment I would then provide the proper formatting overrides in the preamble such as bg, fg and especially the structure color for bullets and such.
which would be the most beamer-like way to go?
