tags:

views:

456

answers:

1

I don't want to use Beamer's standard blue colour theme. I want to use beaver, which is deep reds. Everything looks nice, except that if I use itemize the bullet points are still blue. Is there a nice way to have the bullets vary with what colour theme I was using? (If I were to opt for a yellowish colour theme, I'd expect the bullets to go yellow too.)

If there isn't, what is the brute force way to change the bullet points red? Or at the very least, make them go back to black again.

+2  A: 

... what is the brute force way to change the bullet points red? ...

This works for me:

\setbeamercolor{itemize item}{fg=red} % all frames will have red bullets

\begin{frame}

  \begin{itemize}
    \item First item.
    \item Second item.
    \item Third item.
    \item Fourth item.
  \end{itemize}

\end{frame}

which produces:

alt text

Bart Kiers
Awesome. That does work. Unless someone comes up with a neat variable way to do it, this'll be accepted tomorrow.
Seamus
@Seamus, putting `\setbeamercolor...` outside the frame causes all frames to have red bullets. See my edit.
Bart Kiers
I was asking to have the bullet colour change when I change theme. And I guess I can do that by adding your fix to the `.sty`. And adding a similar line to the yellow theme style file.
Seamus
That sounds like a probable solution (I've never tampered with .sty files myself though...).
Bart Kiers
beamer colour theme .sty files are literally just lists of `\usebeamercolor` commands...
Seamus