21

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.

Seamus
  • 2,041
  • 6
  • 22
  • 42

2 Answers2

30

In the current (early 2012) version of beamer, you want to use:

\setbeamercolor*{item}{fg=red}

instead.

alfC
  • 14,261
  • 4
  • 67
  • 118
Clark
  • 301
  • 1
  • 3
  • 2
17

... 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}
Brad Larson
  • 170,088
  • 45
  • 397
  • 571
Bart Kiers
  • 166,582
  • 36
  • 299
  • 288
  • Awesome. That does work. Unless someone comes up with a neat variable way to do it, this'll be accepted tomorrow. – Seamus May 19 '10 at 13:31
  • @Seamus, putting `\setbeamercolor...` outside the frame causes all frames to have red bullets. See my edit. – Bart Kiers May 19 '10 at 13:35
  • 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 May 19 '10 at 14:00
  • That sounds like a probable solution (I've never tampered with .sty files myself though...). – Bart Kiers May 19 '10 at 14:07
  • beamer colour theme .sty files are literally just lists of `\usebeamercolor` commands... – Seamus May 20 '10 at 09:28
  • Thanks for a cool answer. Somehow I can't find a comprehensive list of everything the `\setbeamercolor` accepts to change. – mike3996 May 20 '11 at 17:08
  • How would I go about changing the color for enumerate items? `\setbeamercolor{enumerate item}{fg=red}` doesn't work. – Malabarba May 06 '12 at 01:52
  • @BruceConnor, I'm not into (La)TeX much these days. Consider posting your question on: http://tex.stackexchange.com – Bart Kiers May 07 '12 at 06:30