I was wondering if it is possible to get a similar colour to "seahorse", which is the colour for my theme. I want to have the word "figura" as the same colour as in "tabla".
This is my minimal working example:
Code: Select all
\documentclass[10pt]{beamer}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[spanish,ngerman,catalan,english]{babel}
\usepackage{pdfpages}
\usepackage{tabularx}
\usepackage{tabu}
\usepackage{booktabs}
\usefonttheme[stillsansserifsmall]{serif}
\usefonttheme{structuresmallcapsserif}
\usetheme{Pittsburgh}
\usecolortheme{seahorse}
\setbeamertemplate{footline}[frame number]
\addto{\captionsspanish}{%
\renewcommand*{\tablename}{Tabla}
}
\beamertemplatenavigationsymbolsempty
\begin{document}
\newcommand*\numer{N"o}
\selectlanguage{spanish}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\frametitle{{\'I}ndice}
\tableofcontents
\end{frame}
\frame{
\frametitle{{\'I}ndice}
\tableofcontents
[pausesections]
}
\begin{frame}
\begin{table}[!ht]
\caption{Errores}
\centering
\begin{tabular}{llc}
\toprule
\textbf{\numer} & \textbf{Subcategoría} &\textbf{Total}\\
\hline
\hline
E & P& 8\\
A& U& 7\\
\hline
\bottomrule
\end{tabular}
\label{tab:total}
\end{table}
\end{frame}
\begin{frame}
\sc{Figura}
\end{frame}
\end{document}
Regards,
Marie