beamer add tag
JeT

```
\documentclass[11pt]{beamer}
\usetheme{Antibes}
\usecolortheme{Beetle}
\usepackage[utf8]{inputenc}
\usepackage[french]{babel}
\usepackage[T1]{fontenc}
\usepackage{pgffor}


\definecolor{escppurple}{RGB}{59, 33, 130}

%	\setbeamercolor*{palette secondary}{fg=white,bg=gray} %subsection
%	\setbeamercolor*{palette tertiary}{fg=white,bg=escppurple} 
	
\begin{document}

\foreach \s in {First,Second, Third}{
\foreach \ss in {1,2, 3}{
  \section{\s{} section}
   \subsection{sub-\ss}
    \begin{frame}
     \frametitle{\s{} slide}
    \end{frame}
  }
}

\end{document}
```
Top Answer
samcarter
The colours in the headline can be controlled via `\setbeamercolor{title in head/foot}{bg=green,fg=orange}` etc.

```
\documentclass[11pt]{beamer}
\usetheme{Antibes}
\usecolortheme{Beetle}
\usepackage[utf8]{inputenc}
\usepackage[french]{babel}
\usepackage[T1]{fontenc}
\usepackage{pgffor}


\definecolor{escppurple}{RGB}{59, 33, 130}

%	\setbeamercolor*{palette secondary}{fg=white,bg=gray} %subsection
%	\setbeamercolor*{palette tertiary}{fg=white,bg=escppurple} 
	
\setbeamercolor{title in head/foot}{bg=green,fg=orange}
\setbeamercolor{section in head/foot}{bg=red,fg=cyan}
\setbeamercolor{subsection in head/foot}{bg=blue,fg=yellow}
  
  
\begin{document}

\foreach \s in {First,Second, Third}{
\foreach \ss in {1,2, 3}{
  \section{\s{} section}
   \subsection{sub-\ss}
    \begin{frame}
     \frametitle{\s{} slide}
    \end{frame}
  }
}

\end{document}
```

![Screen Shot 2021-01-31 at 23.23.43.png](/image?hash=df7b6ae81e808a87e9acf1c2fe57c67789225923a721f363e0931703c1b17ca4)

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.