merging fix

This commit is contained in:
Benjamin Weiss 2015-06-15 13:44:06 +02:00
parent f5468cc14b
commit 9007b0f1a6
3 changed files with 30 additions and 4 deletions

View File

@ -66,6 +66,7 @@ the slides, i.e.
in following format: #current/#total. By default, just current page number is
printed.
* Option `noslidenumbers` omits slide numbers entirely.
* Option `darkcolors` makes the background dark and the foreground light.
#### Color customization

View File

@ -83,6 +83,16 @@
}
% \end{macrocode}
%
% darkcolors
%
% \begin{macrocode}
\newif\if@beamer@metropolis@darkcolors
\@beamer@metropolis@darkcolorsfalse
\DeclareOptionBeamer{darkcolors}{
\@beamer@metropolis@darkcolorstrue
}
% \end{macrocode}
%
% Unknown option error handling
%
% \begin{macrocode}
@ -104,10 +114,17 @@
% Base Colors
%
% \begin{macrocode}
\setbeamercolor{normal text}{%
fg=mDarkTeal,
bg=black!2
}
\if@beamer@metropolis@darkcolors
\setbeamercolor{normal text}{%
fg=black!2,
bg=mDarkTeal
}
\else
\setbeamercolor{normal text}{%
fg=mDarkTeal,
bg=black!2
}
\fi
\setbeamercolor{alerted text}{%
fg=mLightBrown
}

View File

@ -141,6 +141,14 @@
}
% \end{macrocode}
%
% darkcolors
%
% \begin{macrocode}
\DeclareOptionBeamer{darkcolors}{
\PassOptionsToPackage{darkcolors}{beamercolorthememetropolis}%
}
% \end{macrocode}
%
% Unknown option error handling
%
% \begin{macrocode}