21

I'm using the Boadilla theme with Beaver colortheme. All the colored stuff are in dark red as they should be, except for the bibliography item: they still use the structure color that is the classical blue. I can get rid of this by manually changing the color, except from the bibliography number item, that is still in blue.

enter image description here

Alan Munn
  • 218,180
mattia
  • 211
  • Welcome to TeX.sx! Alan included the image for you now. Please make sure that all images are uploaded using the official stackexchange interface, i.e. the image icon on top of the text field (shortcut: CTRL+G). This ensures that all images are always accessible and do not expire. As new user without image posting privileges simply include the image as normal and remove the ! in front of it to turn it into a link. A moderator or another user with edit privileges can then reinsert the ! to turn it into an image again. – Martin Scharrer Jul 07 '11 at 15:54

1 Answers1

26

You don't specify how you generate the bibliography. However if you use the standard bibliography environment from beamer, you can use beamer's color setting scheme. Simply add

\setbeamercolor{bibliography item}{parent=palette primary}
\setbeamercolor*{bibliography entry title}{parent=palette primary}

(The * is necessary in the second command.)

Similarly, you can set the colors bibliography entry author, bibliography entry location and bibliography entry note. If you want to set the color explicitly instead of using the color from the theme, use {fg=⟨color⟩} instead of {parent=...}.

astoeriko
  • 191
Caramdir
  • 89,023
  • 26
  • 255
  • 291
  • 2
    bibliography entry author works perfectly fine, but bibliography entry journal doesn't seem to work – kksagar May 15 '19 at 12:39