
I was hoping that this community might once again help me with a minor issue.
I'm creating a presentation by use of Beamer, and I would like to use the Split theme as I am quite fond of the whole ToC-idea that this theme offers. However, after several uses of this theme, and noticing that many other at my university employ the exact same theme - with the exact same colors - I've decided that I want to change it a bit. Specifically, I would like to change the colors of the theme to match my university's colors. I've figured out - by searching through previous threads at this board - how to change the 'palette primary' colors:
Code: Select all
\definecolor{DTUred}{RGB}{178,20,20}
\setbeamercolor*{palette primary}{use=structure,fg=white,bg=DTUred}
Below is a minimal working example:
Code: Select all
\documentclass{beamer}
\usetheme{Split}
\definecolor{DTUred}{RGB}{178,20,20}
\setbeamercolor*{palette primary}{use=structure,fg=white,bg=DTUred}
%Stuff for the lower info-bar and titlepage
\title[My short title]{My long title}
\author{Thomas}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\end{document}
Best regards,
Thomas