From a96b8edb8d812dcd018acb41f538f34c11a8b3db Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Sun, 8 May 2016 22:28:47 +0000 Subject: fibeamer (8may16) git-svn-id: svn://tug.org/texlive/trunk@40954 c570f23f-e606-0410-a88d-b1316a301751 --- .../texmf-dist/source/latex/fibeamer/fibeamer.dtx | 2 +- .../source/latex/fibeamer/theme/mu/base.dtx | 45 ++++++-- .../source/latex/fibeamer/theme/mu/econ.dtx | 96 ++++++++++------ .../source/latex/fibeamer/theme/mu/fi.dtx | 121 ++++++++++++-------- .../source/latex/fibeamer/theme/mu/fsps.dtx | 102 ++++++++++------- .../source/latex/fibeamer/theme/mu/fss.dtx | 101 +++++++++------- .../source/latex/fibeamer/theme/mu/law.dtx | 103 ++++++++++------- .../source/latex/fibeamer/theme/mu/med.dtx | 110 ++++++++++-------- .../source/latex/fibeamer/theme/mu/ped.dtx | 127 +++++++++++++-------- .../source/latex/fibeamer/theme/mu/phil.dtx | 105 ++++++++++------- .../source/latex/fibeamer/theme/mu/sci.dtx | 105 ++++++++++------- 11 files changed, 632 insertions(+), 385 deletions(-) (limited to 'Master/texmf-dist/source') diff --git a/Master/texmf-dist/source/latex/fibeamer/fibeamer.dtx b/Master/texmf-dist/source/latex/fibeamer/fibeamer.dtx index b145b79ccdb..1dac07b5be7 100644 --- a/Master/texmf-dist/source/latex/fibeamer/fibeamer.dtx +++ b/Master/texmf-dist/source/latex/fibeamer/fibeamer.dtx @@ -54,7 +54,7 @@ \gdef\fibeamer@version@number{#1} \gdef\fibeamer@version@date{#2} \gdef\fibeamer@version{#2 #1 fibeamer MU beamer theme}} -\fibeamer@versiondef{v1.1.3}{2016/02/24}} +\fibeamer@versiondef{v1.1.4}{2016/05/07}} % {\newwrite\f\openout\f=VERSION\write\f{\fibeamer@version}\closeout\f} % % \iffalse Use `\fibeamer@version` as the PDF creator key. diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/base.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/base.dtx index a305421b9d9..7b7e87d11d8 100644 --- a/Master/texmf-dist/source/latex/fibeamer/theme/mu/base.dtx +++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/base.dtx @@ -6,7 +6,7 @@ % \begin{macrocode} \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{fibeamer/theme/mu/% - beamercolorthemefibeamer-mu}[2016/01/14] + beamercolorthemefibeamer-mu}[2016/05/06] % \end{macrocode} % \begin{macro}{\darkframes} % The |darkframes| environment switches the color definitions to @@ -50,9 +50,15 @@ % \end{macro} % A frame that is either title or dark, as specified by the value % of the |\iffibeamer@dark| conditional, will have a gradient -% background. The |fibeamer@backgroundInner| and -% |fibeamer@backgroundOuter| colors will be defined by the -% subsequently loaded color theme. +% background as specified by the |fibeamer@dark@backgroundInner| +% and |fibeamer@light@backgroundOuter| colors that shall be defined +% by the subsequently loaded color theme. +% +% A frame that is neither title nor dark, as specified by the value +% of the |\iffibeamer@dark| conditional, will have a gradient +% background as specified by the |fibeamer@light@backgroundInner| +% and |fibeamer@light@backgroundOuter| colors that shall be defined +% by the subsequently loaded color theme. % \begin{macrocode} \defbeamertemplate*{background canvas}{fibeamer}{% \ifthenelse{% @@ -61,11 +67,19 @@ \begin{tikzpicture} \clip (0,\fibeamer@lengths@clipbottom) rectangle (\paperwidth,\fibeamer@lengths@cliptop); - \path [inner color = fibeamer@backgroundInner, - outer color = fibeamer@backgroundOuter] + \path [inner color = fibeamer@dark@backgroundInner, + outer color = fibeamer@dark@backgroundOuter] + (0,0) rectangle (\paperwidth,\paperwidth); + \end{tikzpicture} + }{% + \begin{tikzpicture} + \clip (0,\fibeamer@lengths@clipbottom) rectangle + (\paperwidth,\fibeamer@lengths@cliptop); + \path [inner color = fibeamer@light@backgroundInner, + outer color = fibeamer@light@backgroundOuter] (0,0) rectangle (\paperwidth,\paperwidth); \end{tikzpicture} - }{}} + }} % \end{macrocode} % The |\qed| symbol inserted at the end of proofs will have the % same color as the rest of the proof. @@ -76,6 +90,12 @@ use=block body, fg=block body.fg, bg=block body.bg} +% \end{macrocode} +% The links can be colored by the subsequently loaded color themes. +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + \hypersetup{colorlinks,linkcolor=} \mode % \end{macrocode} @@ -311,8 +331,7 @@ \usebeamerfont{title}% \usebeamercolor[fg]{title}% \begin{minipage}[b][2\baselineskip][b]{\textwidth}% - \raggedright% - \inserttitle% + \raggedright\inserttitle \end{minipage} \vskip-.5\baselineskip @@ -328,9 +347,14 @@ \pgfusepath{stroke} \end{pgfpicture} \vfill - +% \end{macrocode} +% \changes{v1.1.4:4}{2016/05/06}{Added support for subtitle and +% author name coloring within the color themes of the Masaryk +% University in Brno. [VN]} +% \begin{macrocode} % Input the subtitle \usebeamerfont{subtitle}% + \usebeamercolor[fg]{subtitle}% \begin{minipage}{\textwidth} \raggedright% \insertsubtitle% @@ -338,6 +362,7 @@ % Input the author's name \usebeamerfont{author}% + \usebeamercolor[fg]{author}% \begin{minipage}{\textwidth} \raggedright% \insertauthor% diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/econ.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/econ.dtx index d473938ff1f..3048775d93a 100644 --- a/Master/texmf-dist/source/latex/fibeamer/theme/mu/econ.dtx +++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/econ.dtx @@ -5,20 +5,32 @@ % \begin{macrocode} \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{fibeamer/theme/mu/% - beamercolorthemefibeamer-mu-econ}[2016/01/14] + beamercolorthemefibeamer-mu-econ}[2016/05/06] \mode % \end{macrocode} -% This color theme uses the combination of red-brown, gray and -% white. The |fibeamer@back|\-|groundInner| and -% |fibeamer@backgroundOuter| colors are used within the background -% canvas template, which is defined within the color theme of the -% Masaryk University and which draws the gradient background of -% dark frames. +% This color theme uses the combination of yellow and shades of gray. The +% |fibeamer@{dark,|\-|light}@background{Inner,|\-|Outer}| colors are used +% within the background canvas template, which is defined within the base +% color theme of the Masaryk University and which draws the gradient +% background of the frames. % \begin{macrocode} + \definecolor{fibeamer@black}{HTML}{2B2E34} + \definecolor{fibeamer@white}{HTML}{FFFFFF} \definecolor{fibeamer@brown}{HTML}{892840} + \colorlet{fibeamer@lightBrown}{fibeamer@brown!30!fibeamer@white} + \colorlet{fibeamer@darkBrown}{fibeamer@brown!60!fibeamer@black} \definecolor{fibeamer@gray}{HTML}{999999} - \colorlet{fibeamer@backgroundInner}{fibeamer@brown} - \colorlet{fibeamer@backgroundOuter}{fibeamer@brown!60!black} + \definecolor{fibeamer@lightOrange}{HTML}{FFA25E} + \colorlet{fibeamer@orange}{fibeamer@lightOrange!80!fibeamer@darkBrown} +% \end{macrocode} +% \changes{v1.1.4:2}{2016/05/06}{Removed gradient backgrounds from +% the color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Background gradients + \colorlet{fibeamer@dark@backgroundInner}{fibeamer@darkBrown} + \colorlet{fibeamer@dark@backgroundOuter}{fibeamer@darkBrown} + \colorlet{fibeamer@light@backgroundInner}{fibeamer@white} + \colorlet{fibeamer@light@backgroundOuter}{fibeamer@white} % \end{macrocode} % The |darkframes| environment switches the |\iffibeamer@darktrue| % conditional on and sets a dark color theme. @@ -27,35 +39,42 @@ \begingroup \fibeamer@darktrue %% Structures - \setbeamercolor*{frametitle}{fg=fibeamer@brown!30!white} - \setbeamercolor*{framesubtitle}{fg=white} + \setbeamercolor*{frametitle}{fg=fibeamer@brown!30!fibeamer@white} + \setbeamercolor*{framesubtitle}{fg=fibeamer@white} %% Text - \setbeamercolor*{normal text}{fg=white, bg=fibeamer@brown} - \setbeamercolor*{structure}{fg=white, bg=fibeamer@brown} + \setbeamercolor*{normal text}{fg=fibeamer@white, bg=fibeamer@brown} + \setbeamercolor*{structure}{fg=fibeamer@white, bg=fibeamer@brown} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + \setbeamercolor*{alerted text}{fg=fibeamer@lightOrange} +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} - \setbeamercolor*{alerted text}{fg=red!60!white} - %% Items - \setbeamercolor*{item}{fg=fibeamer@brown!30!white} - \setbeamercolor*{footnote mark}{fg=fibeamer@brown!30!white} + %% Items, footnotes and links + \setbeamercolor*{item}{fg=fibeamer@lightBrown} + \setbeamercolor*{footnote mark}{fg=fibeamer@lightBrown} + \hypersetup{urlcolor=fibeamer@lightBrown} %% Blocks \setbeamercolor*{block title}{% - fg=white, bg=fibeamer@brown!60!white} + fg=fibeamer@white, bg=fibeamer@brown!60!fibeamer@white} \setbeamercolor*{block title example}{% - fg=white, bg=fibeamer@brown!60!white} + fg=fibeamer@white, bg=fibeamer@brown!60!fibeamer@white} \setbeamercolor*{block title alerted}{% - fg=white, bg=fibeamer@brown!90!white} + fg=fibeamer@darkBrown, bg=fibeamer@lightOrange} \setbeamercolor*{block body}{% fg=fibeamer@brown, - bg=fibeamer@gray!15!white} + bg=fibeamer@gray!15!fibeamer@white} \usebeamercolor*{normal text} % Code listings \lstset{% - commentstyle=\color{green!30!white}, - keywordstyle=\color{blue!30!white}, - stringstyle=\color{fibeamer@brown!30!white}} + commentstyle=\color{green!30!fibeamer@white}, + keywordstyle=\color{blue!30!fibeamer@white}, + stringstyle=\color{fibeamer@brown!30!fibeamer@white}} }{% \endgroup} % \end{macrocode} @@ -63,39 +82,46 @@ % \begin{macrocode} %% Structures \setbeamercolor{frametitle}{fg=fibeamer@brown} - \setbeamercolor{framesubtitle}{fg=black!75!white} + \setbeamercolor{framesubtitle}{fg=fibeamer@black!75!fibeamer@white} %% Text - \setbeamercolor{normal text}{fg=black, bg=white} - \setbeamercolor{structure}{fg=black, bg=white} + \setbeamercolor{normal text}{fg=fibeamer@black, bg=fibeamer@white} + \setbeamercolor{structure}{fg=fibeamer@black, bg=fibeamer@white} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} \setbeamercolor{alerted text}{fg=red} \addtobeamertemplate{block begin}{% \iffibeamer@dark % alerted text in plain block at dark slides - \setbeamercolor{alerted text}{fg=red}% + \setbeamercolor{alerted text}{fg=fibeamer@orange}% \fi}{} - %% Items +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Items, footnotes and links \setbeamercolor{item}{fg=fibeamer@brown} \setbeamercolor{footnote mark}{fg=fibeamer@brown} + \hypersetup{urlcolor=fibeamer@brown} %% Blocks \setbeamercolor{block title}{% - fg=white, bg=fibeamer@brown!50!white} + fg=fibeamer@white, bg=fibeamer@brown} \setbeamercolor{block title example}{% - fg=white, bg=fibeamer@brown!50!white} + fg=fibeamer@white, bg=fibeamer@brown} \setbeamercolor{block title alerted}{% - fg=white, bg=fibeamer@brown} + fg=fibeamer@white, bg=red} \setbeamercolor{block body}{% - fg=fibeamer@brown, bg=fibeamer@gray!20!white} + fg=fibeamer@brown, bg=fibeamer@gray!20!fibeamer@white} %% Title - \setbeamercolor{title}{fg=white, bg=fibeamer@brown} + \setbeamercolor{title}{fg=fibeamer@white, bg=fibeamer@brown} % Code listings \lstset{% basicstyle=\footnotesize\ttfamily, breakatwhitespace=false, breaklines=true, - commentstyle=\color{green!60!black}, + commentstyle=\color{green!60!fibeamer@black}, extendedchars=true, keywordstyle=\color{blue}, showspaces=false, diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/fi.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fi.dtx index 01b2b2ce70e..dd0de9c35e1 100644 --- a/Master/texmf-dist/source/latex/fibeamer/theme/mu/fi.dtx +++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fi.dtx @@ -5,24 +5,36 @@ % \begin{macrocode} \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{fibeamer/theme/mu/% - beamercolorthemefibeamer-mu-fi}[2016/01/14] + beamercolorthemefibeamer-mu-fi}[2016/05/06] \mode % \end{macrocode} -% This color theme uses the combination of yellow and dark gray in light frames -% and the combination of gold and white in dark frames. The -% |fibeamer@back|\-|groundInner| and |fibeamer@backgroundOuter| colors are used -% within the background canvas template, which is defined within the color -% theme of the Masaryk University and which draws the gradient background of -% dark frames. +% This color theme uses the combination of yellow and shades of gray. The +% |fibeamer@{dark,|\-|light}@background{Inner,|\-|Outer}| colors are used +% within the background canvas template, which is defined within the base +% color theme of the Masaryk University and which draws the gradient +% background of the frames. +% \changes{v1.1.4:1}{2016/05/06}{Completely revamped the color theme of the +% Faculty of Informatics at the Masaryk University in Brno. [VN]} % \begin{macrocode} - \definecolor{fibeamer@gold}{HTML}{a47312} - \definecolor{fibeamer@yellow}{HTML}{FFEB9C} - \definecolor{fibeamer@darkYellow}{HTML}{FFB600} + \definecolor{fibeamer@black}{HTML}{2B2E34} + \definecolor{fibeamer@white}{HTML}{FFFFFF} + \definecolor{fibeamer@yellow}{HTML}{FFD564} \definecolor{fibeamer@orange}{HTML}{FF5500} - \definecolor{fibeamer@gray}{HTML}{999999} - \colorlet{fibeamer@blue}{blue!60!fibeamer@gray} - \colorlet{fibeamer@backgroundInner}{fibeamer@gold} - \colorlet{fibeamer@backgroundOuter}{fibeamer@gold!60!black} + \colorlet{fibeamer@lightGray}{white!80!fibeamer@black} + \colorlet{fibeamer@gray}{white!35!fibeamer@black} + \colorlet{fibeamer@darkGray}{white!20!fibeamer@black} + \colorlet{fibeamer@blue}{blue!60!fibeamer@lightGray} + \definecolor{fibeamer@lightRed}{HTML}{FF8E6B} + \colorlet{fibeamer@darkRed}{red!80!fibeamer@white} +% \end{macrocode} +% \changes{v1.1.4:2}{2016/05/06}{Removed gradient backgrounds from +% the color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Background gradients + \colorlet{fibeamer@dark@backgroundInner}{fibeamer@black} + \colorlet{fibeamer@dark@backgroundOuter}{fibeamer@black} + \colorlet{fibeamer@light@backgroundInner}{fibeamer@white} + \colorlet{fibeamer@light@backgroundOuter}{fibeamer@white} % \end{macrocode} % The |darkframes| environment switches the |\iffibeamer@darktrue| % conditional on and sets a dark color theme. @@ -31,71 +43,90 @@ \begingroup \fibeamer@darktrue %% Structures - \setbeamercolor*{frametitle}{fg=fibeamer@gold!30!white} - \setbeamercolor*{framesubtitle}{fg=white} + \setbeamercolor*{frametitle}{fg=fibeamer@yellow} + \setbeamercolor*{framesubtitle}{fg=fibeamer@lightGray} %% Text - \setbeamercolor*{normal text}{fg=white, bg=fibeamer@gold} - \setbeamercolor*{structure}{fg=white, bg=fibeamer@gold} + \setbeamercolor*{normal text}{fg=white, bg=fibeamer@black} + \setbeamercolor*{structure}{fg=white, bg=fibeamer@black} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + \setbeamercolor*{alerted text}{fg=fibeamer@lightRed} +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} - \setbeamercolor*{alerted text}{% - fg=fibeamer@gold!70!white!20!fibeamer@darkYellow} - %% Items - \setbeamercolor*{item}{fg=fibeamer@gold!30!white} - \setbeamercolor*{footnote mark}{fg=fibeamer@gold!30!white} + %% Items, footnotes and links + \setbeamercolor*{item}{fg=fibeamer@yellow} + \setbeamercolor*{footnote mark}{fg=fibeamer@yellow} + \hypersetup{urlcolor=fibeamer@yellow} %% Blocks \setbeamercolor*{block title}{% - fg=white, bg=fibeamer@gold!60!white} + fg=fibeamer@black, bg=fibeamer@yellow} \setbeamercolor*{block title example}{% - fg=white, bg=fibeamer@gold!60!white} + fg=fibeamer@yellow, bg=fibeamer@darkGray} \setbeamercolor*{block title alerted}{% - fg=white, bg=fibeamer@gold!90!white} + fg=fibeamer@black, bg=fibeamer@lightRed} \setbeamercolor*{block body}{% - fg=fibeamer@gold, - bg=fibeamer@gray!15!white} + fg=fibeamer@white, + bg=fibeamer@darkGray} \usebeamercolor*{normal text} % Code listings \lstset{% commentstyle=\color{green!30!white}, keywordstyle=\color{blue!30!white}, - stringstyle=\color{fibeamer@gold!30!white}} + stringstyle=\color{fibeamer@orange!30!white}} }{% \endgroup} % \end{macrocode} % Outside the |darkframes| environment, the light theme is used. % \begin{macrocode} %% Structures - \setbeamercolor{frametitle}{fg=black!75!white} - \setbeamercolor{framesubtitle}{fg=black!50!white} + \setbeamercolor{frametitle}{fg=fibeamer@black} + \setbeamercolor{framesubtitle}{fg=fibeamer@gray} %% Text - \setbeamercolor{normal text}{fg=black!75!white, bg=white} - \setbeamercolor{structure}{fg=black!75!white, bg=white} + \setbeamercolor{normal text}{fg=fibeamer@black, bg=fibeamer@white} + \setbeamercolor{structure}{fg=fibeamer@black, bg=fibeamer@white} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} - \setbeamercolor{alerted text}{fg=fibeamer@orange} + \setbeamercolor{alerted text}{fg=red} \addtobeamertemplate{block begin}{% - \iffibeamer@dark % alerted text in plain block at dark slides - \setbeamercolor{alerted text}{% - fg=fibeamer@gold!30!fibeamer@darkYellow}% + \iffibeamer@dark\else % alerted text in plain blocks at light slides + \setbeamercolor{alerted text}{fg=fibeamer@darkRed} \fi}{} - %% Items - \setbeamercolor{item}{fg=fibeamer@darkYellow} - \setbeamercolor{footnote mark}{fg=fibeamer@darkYellow} +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Items and links + \setbeamercolor{item}{fg=fibeamer@gray} + \setbeamercolor{footnote mark}{fg=fibeamer@gray} + \hypersetup{urlcolor=fibeamer@blue} %% Blocks \setbeamercolor{block title}{% - fg=black!75!white, bg=fibeamer@yellow} + fg=fibeamer@black, bg=fibeamer@yellow} \setbeamercolor{block title example}{% - fg=black!75!white, bg=fibeamer@yellow} + fg=fibeamer@yellow, bg=fibeamer@black} \setbeamercolor{block title alerted}{% - fg=white, bg=black!75!white} + fg=fibeamer@white, bg=red} \setbeamercolor{block body}{% - fg=fibeamer@yellow, bg=black!75!white} + fg=fibeamer@white, bg=fibeamer@black} %% Title - \setbeamercolor{title}{fg=white, bg=fibeamer@gold} + \setbeamercolor{title}{fg=fibeamer@yellow, bg=fibeamer@black} +% \end{macrocode} +% \changes{v1.1.4:4}{2016/05/06}{Added support for subtitle and +% author name coloring within the color themes of the Masaryk +% University in Brno. [VN]} +% \begin{macrocode} + \setbeamercolor{subtitle}{fg=fibeamer@white, bg=fibeamer@black} + \setbeamercolor{author}{fg=fibeamer@lightGray, bg=fibeamer@black} % Code listings \lstset{% basicstyle=\footnotesize\ttfamily, diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/fsps.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fsps.dtx index f5bcfd40381..50b619d2700 100644 --- a/Master/texmf-dist/source/latex/fibeamer/theme/mu/fsps.dtx +++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fsps.dtx @@ -5,21 +5,33 @@ % \begin{macrocode} \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{fibeamer/theme/mu/% - beamercolorthemefibeamer-mu-fsps}[2016/01/14] + beamercolorthemefibeamer-mu-fsps}[2016/05/06] \mode % \end{macrocode} -% This color theme uses the combination of dark blue, gray and -% white. The |fibeamer@back|\-|groundInner| and -% |fibeamer@backgroundOuter| colors are used within the background -% canvas template, which is defined within the color theme of the -% Masaryk University and which draws the gradient background of -% dark frames. +% This color theme uses the combination of yellow and shades of gray. The +% |fibeamer@{dark,|\-|light}@background{Inner,|\-|Outer}| colors are used +% within the background canvas template, which is defined within the base +% color theme of the Masaryk University and which draws the gradient +% background of the frames. % \begin{macrocode} - \definecolor{fibeamer@blue}{HTML}{2053ac} + \definecolor{fibeamer@black}{HTML}{000000} + \definecolor{fibeamer@white}{HTML}{FFFFFF} + \definecolor{fibeamer@blue}{HTML}{283889} + \colorlet{fibeamer@darkBlue}{fibeamer@blue!60!fibeamer@black} \definecolor{fibeamer@brightBlue}{HTML}{3998F9} + \colorlet{fibeamer@lightBlue}{fibeamer@blue!30!fibeamer@white} \definecolor{fibeamer@gray}{HTML}{999999} - \colorlet{fibeamer@backgroundInner}{fibeamer@blue} - \colorlet{fibeamer@backgroundOuter}{fibeamer@blue!60!black} + \definecolor{fibeamer@lightOrange}{HTML}{FFA25E} + \colorlet{fibeamer@orange}{fibeamer@lightOrange!80!fibeamer@darkBlue} +% \end{macrocode} +% \changes{v1.1.4:2}{2016/05/06}{Removed gradient backgrounds from +% the color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Background gradients + \colorlet{fibeamer@dark@backgroundInner}{fibeamer@darkBlue} + \colorlet{fibeamer@dark@backgroundOuter}{fibeamer@darkBlue} + \colorlet{fibeamer@light@backgroundInner}{fibeamer@white} + \colorlet{fibeamer@light@backgroundOuter}{fibeamer@white} % \end{macrocode} % The |darkframes| environment switches the |\iffibeamer@darktrue| % conditional on and sets a dark color theme. @@ -28,35 +40,42 @@ \begingroup \fibeamer@darktrue %% Structures - \setbeamercolor*{frametitle}{fg=fibeamer@blue!30!white} - \setbeamercolor*{framesubtitle}{fg=white} + \setbeamercolor*{frametitle}{fg=fibeamer@blue!30!fibeamer@white} + \setbeamercolor*{framesubtitle}{fg=fibeamer@white} %% Text - \setbeamercolor*{normal text}{fg=white, bg=fibeamer@blue} - \setbeamercolor*{structure}{fg=white, bg=fibeamer@blue} + \setbeamercolor*{normal text}{fg=fibeamer@white, bg=fibeamer@blue} + \setbeamercolor*{structure}{fg=fibeamer@white, bg=fibeamer@blue} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + \setbeamercolor*{alerted text}{fg=fibeamer@lightOrange} +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} - \setbeamercolor*{alerted text}{fg=fibeamer@brightBlue!60!white} - %% Items - \setbeamercolor*{item}{fg=fibeamer@blue!30!white} - \setbeamercolor*{footnote mark}{fg=fibeamer@blue!30!white} + %% Items, footnotes and links + \setbeamercolor*{item}{fg=fibeamer@lightBlue} + \setbeamercolor*{footnote mark}{fg=fibeamer@lightBlue} + \hypersetup{urlcolor=fibeamer@lightBlue} %% Blocks \setbeamercolor*{block title}{% - fg=white, bg=fibeamer@blue!60!white} + fg=fibeamer@white, bg=fibeamer@blue!60!fibeamer@white} \setbeamercolor*{block title example}{% - fg=white, bg=fibeamer@blue!60!white} + fg=fibeamer@white, bg=fibeamer@blue!60!fibeamer@white} \setbeamercolor*{block title alerted}{% - fg=white, bg=fibeamer@blue!95!white} + fg=fibeamer@darkBlue, bg=fibeamer@lightOrange} \setbeamercolor*{block body}{% fg=fibeamer@blue, - bg=fibeamer@gray!15!white} + bg=fibeamer@gray!15!fibeamer@white} \usebeamercolor*{normal text} % Code listings \lstset{% - commentstyle=\color{green!30!white}, - keywordstyle=\color{blue!40!fibeamer@brightBlue!25!white}, - stringstyle=\color{red!30!white}} + commentstyle=\color{green!30!fibeamer@white}, + keywordstyle=\color{blue!40!fibeamer@brightBlue!25!fibeamer@white}, + stringstyle=\color{red!30!fibeamer@white}} }{% \endgroup} % \end{macrocode} @@ -64,41 +83,46 @@ % \begin{macrocode} %% Structures \setbeamercolor{frametitle}{fg=fibeamer@blue} - \setbeamercolor{framesubtitle}{fg=black!75!white} + \setbeamercolor{framesubtitle}{fg=fibeamer@black!75!fibeamer@white} %% Text - \setbeamercolor{normal text}{fg=black, bg=white} - \setbeamercolor{structure}{fg=black, bg=white} + \setbeamercolor{normal text}{fg=fibeamer@black, bg=fibeamer@white} + \setbeamercolor{structure}{fg=fibeamer@black, bg=fibeamer@white} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} - \setbeamercolor{alerted text}{fg=fibeamer@brightBlue} + \setbeamercolor{alerted text}{fg=red} \addtobeamertemplate{block begin}{% \iffibeamer@dark % alerted text in plain block at dark slides - \setbeamercolor{alerted text}{fg=fibeamer@brightBlue}% - \else % alerted text in plain block at light slides - \setbeamercolor{alerted text}{fg=fibeamer@brightBlue!80!white}% + \setbeamercolor{alerted text}{fg=fibeamer@orange}% \fi}{} - %% Items +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Items, footnotes and links \setbeamercolor{item}{fg=fibeamer@blue} \setbeamercolor{footnote mark}{fg=fibeamer@blue} + \hypersetup{urlcolor=fibeamer@blue} %% Blocks \setbeamercolor{block title}{% - fg=white, bg=fibeamer@blue!50!white} + fg=fibeamer@white, bg=fibeamer@blue} \setbeamercolor{block title example}{% - fg=white, bg=fibeamer@blue!50!white} + fg=fibeamer@white, bg=fibeamer@blue} \setbeamercolor{block title alerted}{% - fg=white, bg=fibeamer@blue} + fg=fibeamer@white, bg=red} \setbeamercolor{block body}{% - fg=fibeamer@blue, bg=fibeamer@gray!20!white} + fg=fibeamer@blue, bg=fibeamer@gray!20!fibeamer@white} %% Title - \setbeamercolor{title}{fg=white, bg=fibeamer@blue} + \setbeamercolor{title}{fg=fibeamer@white, bg=fibeamer@blue} % Code listings \lstset{% basicstyle=\footnotesize\ttfamily, breakatwhitespace=false, breaklines=true, - commentstyle=\color{green!60!black}, + commentstyle=\color{green!60!fibeamer@black}, extendedchars=true, keywordstyle=\color{fibeamer@brightBlue!50!fibeamer@blue}, showspaces=false, diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/fss.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fss.dtx index 5c608809778..8aa2ddae234 100644 --- a/Master/texmf-dist/source/latex/fibeamer/theme/mu/fss.dtx +++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fss.dtx @@ -5,21 +5,32 @@ % \begin{macrocode} \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{fibeamer/theme/mu/% - beamercolorthemefibeamer-mu-fss}[2016/01/14] + beamercolorthemefibeamer-mu-fss}[2016/05/06] \mode % \end{macrocode} -% This color theme uses the combination of cyan, gray and -% white. The |fibeamer@back|\-|groundInner| and -% |fibeamer@backgroundOuter| colors are used within the background -% canvas template, which is defined within the color theme of the -% Masaryk University and which draws the gradient background of -% dark frames. +% This color theme uses the combination of yellow and shades of gray. The +% |fibeamer@{dark,|\-|light}@background{Inner,|\-|Outer}| colors are used +% within the background canvas template, which is defined within the base +% color theme of the Masaryk University and which draws the gradient +% background of the frames. % \begin{macrocode} + \definecolor{fibeamer@black}{HTML}{000000} + \definecolor{fibeamer@white}{HTML}{FFFFFF} \definecolor{fibeamer@cyan}{HTML}{00796E} - \definecolor{fibeamer@brightCyan}{HTML}{06c696} + \colorlet{fibeamer@darkCyan}{fibeamer@cyan!70!fibeamer@black} + \colorlet{fibeamer@lightCyan}{fibeamer@cyan!30!fibeamer@white} \definecolor{fibeamer@gray}{HTML}{999999} - \colorlet{fibeamer@backgroundInner}{fibeamer@cyan!80!black} - \colorlet{fibeamer@backgroundOuter}{fibeamer@cyan!60!black} + \definecolor{fibeamer@lightOrange}{HTML}{FFA25E} + \colorlet{fibeamer@orange}{fibeamer@lightOrange!80!fibeamer@darkCyan} +% \end{macrocode} +% \changes{v1.1.4:2}{2016/05/06}{Removed gradient backgrounds from +% the color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Background gradients + \colorlet{fibeamer@dark@backgroundInner}{fibeamer@darkCyan} + \colorlet{fibeamer@dark@backgroundOuter}{fibeamer@darkCyan} + \colorlet{fibeamer@light@backgroundInner}{fibeamer@white} + \colorlet{fibeamer@light@backgroundOuter}{fibeamer@white} % \end{macrocode} % The |darkframes| environment switches the |\iffibeamer@darktrue| % conditional on and sets a dark color theme. @@ -28,35 +39,42 @@ \begingroup \fibeamer@darktrue %% Structures - \setbeamercolor*{frametitle}{fg=fibeamer@cyan!30!white} - \setbeamercolor*{framesubtitle}{fg=white} + \setbeamercolor*{frametitle}{fg=fibeamer@lightCyan} + \setbeamercolor*{framesubtitle}{fg=fibeamer@white} %% Text - \setbeamercolor*{normal text}{fg=white, bg=fibeamer@cyan} - \setbeamercolor*{structure}{fg=white, bg=fibeamer@cyan} + \setbeamercolor*{normal text}{fg=fibeamer@white, bg=fibeamer@cyan} + \setbeamercolor*{structure}{fg=fibeamer@white, bg=fibeamer@cyan} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + \setbeamercolor*{alerted text}{fg=fibeamer@lightOrange} +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} - \setbeamercolor*{alerted text}{fg=fibeamer@brightCyan!90!white} - %% Items - \setbeamercolor*{item}{fg=fibeamer@cyan!30!white} - \setbeamercolor*{footnote mark}{fg=fibeamer@cyan!30!white} + %% Items, footnotes and links + \setbeamercolor{item}{fg=fibeamer@lightCyan} + \setbeamercolor{footnote mark}{fg=fibeamer@lightCyan} + \hypersetup{urlcolor=fibeamer@lightCyan} %% Blocks \setbeamercolor*{block title}{% - fg=white, bg=fibeamer@cyan!60!white} + fg=fibeamer@white, bg=fibeamer@cyan!60!fibeamer@white} \setbeamercolor*{block title example}{% - fg=white, bg=fibeamer@cyan!60!white} + fg=fibeamer@white, bg=fibeamer@cyan!60!fibeamer@white} \setbeamercolor*{block title alerted}{% - fg=white, bg=fibeamer@cyan} + fg=fibeamer@darkCyan, bg=fibeamer@lightOrange} \setbeamercolor*{block body}{% fg=fibeamer@cyan, - bg=fibeamer@gray!15!white} + bg=fibeamer@gray!15!fibeamer@white} \usebeamercolor*{normal text} % Code listings \lstset{% - commentstyle=\color{green!30!white}, - keywordstyle=\color{blue!30!white}, - stringstyle=\color{red!30!white}} + commentstyle=\color{green!30!fibeamer@white}, + keywordstyle=\color{blue!30!fibeamer@white}, + stringstyle=\color{red!30!fibeamer@white}} }{% \endgroup} % \end{macrocode} @@ -64,41 +82,46 @@ % \begin{macrocode} %% Structures \setbeamercolor{frametitle}{fg=fibeamer@cyan} - \setbeamercolor{framesubtitle}{fg=black!75!white} + \setbeamercolor{framesubtitle}{fg=fibeamer@black!75!fibeamer@white} %% Text - \setbeamercolor{normal text}{fg=black, bg=white} - \setbeamercolor{structure}{fg=black, bg=white} + \setbeamercolor{normal text}{fg=fibeamer@black, bg=fibeamer@white} + \setbeamercolor{structure}{fg=fibeamer@black, bg=fibeamer@white} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} - \setbeamercolor{alerted text}{fg=fibeamer@brightCyan} + \setbeamercolor{alerted text}{fg=red} \addtobeamertemplate{block begin}{% \iffibeamer@dark % alerted text in plain block at dark slides - \setbeamercolor{alerted text}{fg=fibeamer@brightCyan}% - \else % alerted text in plain block at light slides - \setbeamercolor{alerted text}{fg=fibeamer@brightCyan!80!white}% + \setbeamercolor{alerted text}{fg=fibeamer@orange}% \fi}{} - %% Items +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Items, footnotes and links \setbeamercolor{item}{fg=fibeamer@cyan} \setbeamercolor{footnote mark}{fg=fibeamer@cyan} + \hypersetup{urlcolor=fibeamer@cyan} %% Blocks \setbeamercolor{block title}{% - fg=white, bg=fibeamer@cyan!50!white} + fg=fibeamer@white, bg=fibeamer@cyan} \setbeamercolor{block title example}{% - fg=white, bg=fibeamer@cyan!50!white} + fg=fibeamer@white, bg=fibeamer@cyan} \setbeamercolor{block title alerted}{% - fg=white, bg=fibeamer@cyan} + fg=fibeamer@white, bg=red} \setbeamercolor{block body}{% - fg=fibeamer@cyan, bg=fibeamer@gray!20!white} + fg=fibeamer@cyan, bg=fibeamer@gray!20!fibeamer@white} %% Title - \setbeamercolor{title}{fg=white, bg=fibeamer@cyan} + \setbeamercolor{title}{fg=fibeamer@white, bg=fibeamer@cyan} % Code listings \lstset{% basicstyle=\footnotesize\ttfamily, breakatwhitespace=false, breaklines=true, - commentstyle=\color{green!60!black}, + commentstyle=\color{green!60!fibeamer@black}, extendedchars=true, keywordstyle=\color{blue}, showspaces=false, diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/law.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/law.dtx index fdab3434a00..dc2daab9539 100644 --- a/Master/texmf-dist/source/latex/fibeamer/theme/mu/law.dtx +++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/law.dtx @@ -5,20 +5,32 @@ % \begin{macrocode} \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{fibeamer/theme/mu/% - beamercolorthemefibeamer-mu-law}[2016/01/14] + beamercolorthemefibeamer-mu-law}[2016/05/06] \mode % \end{macrocode} -% This color theme uses the combination of violet, gray and white. -% The |fibeamer@back|\-|groundInner| and |fibeamer@backgroundOuter| -% colors are used within the background canvas template, which is -% defined within the color theme of the Masaryk University and -% which draws the gradient background of dark frames. +% This color theme uses the combination of yellow and shades of gray. The +% |fibeamer@{dark,|\-|light}@background{Inner,|\-|Outer}| colors are used +% within the background canvas template, which is defined within the base +% color theme of the Masaryk University and which draws the gradient +% background of the frames. % \begin{macrocode} - \definecolor{fibeamer@violet}{HTML}{660099} - \definecolor{fibeamer@brightViolet}{HTML}{B21AFF} + \definecolor{fibeamer@black}{HTML}{000000} + \definecolor{fibeamer@white}{HTML}{FFFFFF} + \definecolor{fibeamer@violet}{HTML}{732889} + \colorlet{fibeamer@darkViolet}{fibeamer@violet!70!fibeamer@black} + \colorlet{fibeamer@lightViolet}{fibeamer@violet!30!fibeamer@white} \definecolor{fibeamer@gray}{HTML}{999999} - \colorlet{fibeamer@backgroundInner}{fibeamer@violet} - \colorlet{fibeamer@backgroundOuter}{fibeamer@violet!60!black} + \definecolor{fibeamer@lightOrange}{HTML}{FFA25E} + \colorlet{fibeamer@orange}{fibeamer@lightOrange!80!fibeamer@darkViolet} +% \end{macrocode} +% \changes{v1.1.4:2}{2016/05/06}{Removed gradient backgrounds from +% the color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Background gradients + \colorlet{fibeamer@dark@backgroundInner}{fibeamer@darkViolet} + \colorlet{fibeamer@dark@backgroundOuter}{fibeamer@darkViolet} + \colorlet{fibeamer@light@backgroundInner}{fibeamer@white} + \colorlet{fibeamer@light@backgroundOuter}{fibeamer@white} % \end{macrocode} % The |darkframes| environment switches the |\iffibeamer@darktrue| % conditional on and sets a dark color theme. @@ -27,36 +39,42 @@ \begingroup \fibeamer@darktrue %% Structures - \setbeamercolor*{frametitle}{fg=fibeamer@violet!30!white} - \setbeamercolor*{framesubtitle}{fg=white} + \setbeamercolor*{frametitle}{fg=fibeamer@lightViolet} + \setbeamercolor*{framesubtitle}{fg=fibeamer@white} %% Text - \setbeamercolor*{normal text}{fg=white, bg=fibeamer@violet} - \setbeamercolor*{structure}{fg=white, bg=fibeamer@violet} + \setbeamercolor*{normal text}{fg=fibeamer@white, bg=fibeamer@violet} + \setbeamercolor*{structure}{fg=fibeamer@white, bg=fibeamer@violet} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + \setbeamercolor*{alerted text}{fg=fibeamer@lightOrange} +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} - \setbeamercolor*{alerted text}{% - fg=fibeamer@brightViolet!60!white!90!red} - %% Items - \setbeamercolor*{item}{fg=fibeamer@violet!30!white} - \setbeamercolor*{footnote mark}{fg=fibeamer@violet!30!white} + %% Items, footnotes and links + \setbeamercolor*{item}{fg=fibeamer@lightViolet} + \setbeamercolor*{footnote mark}{fg=fibeamer@lightViolet} + \hypersetup{urlcolor=fibeamer@lightViolet} %% Blocks \setbeamercolor*{block title}{% - fg=white, bg=fibeamer@violet!60!white} + fg=fibeamer@white, bg=fibeamer@violet!60!fibeamer@white} \setbeamercolor*{block title example}{% - fg=white, bg=fibeamer@violet!60!white} + fg=fibeamer@white, bg=fibeamer@violet!60!fibeamer@white} \setbeamercolor*{block title alerted}{% - fg=white, bg=fibeamer@violet!90!white} + fg=fibeamer@darkViolet, bg=fibeamer@lightOrange} \setbeamercolor*{block body}{% fg=fibeamer@violet, - bg=fibeamer@gray!15!white} + bg=fibeamer@gray!15!fibeamer@white} \usebeamercolor*{normal text} % Code listings \lstset{% - commentstyle=\color{green!30!white}, - keywordstyle=\color{blue!30!white}, - stringstyle=\color{fibeamer@violet!30!white}} + commentstyle=\color{green!30!fibeamer@white}, + keywordstyle=\color{blue!30!fibeamer@white}, + stringstyle=\color{fibeamer@lightViolet}} }{% \endgroup} % \end{macrocode} @@ -64,41 +82,46 @@ % \begin{macrocode} %% Structures \setbeamercolor{frametitle}{fg=fibeamer@violet} - \setbeamercolor{framesubtitle}{fg=black!75!white} + \setbeamercolor{framesubtitle}{fg=fibeamer@black!75!fibeamer@white} %% Text - \setbeamercolor{normal text}{fg=black, bg=white} - \setbeamercolor{structure}{fg=black, bg=white} + \setbeamercolor{normal text}{fg=fibeamer@black, bg=fibeamer@white} + \setbeamercolor{structure}{fg=fibeamer@black, bg=fibeamer@white} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} - \setbeamercolor{alerted text}{fg=fibeamer@brightViolet} + \setbeamercolor{alerted text}{fg=red} \addtobeamertemplate{block begin}{% \iffibeamer@dark % alerted text in plain block at dark slides - \setbeamercolor{alerted text}{fg=fibeamer@brightViolet!90!white}% - \else % alerted text in plain block at light slides - \setbeamercolor{alerted text}{fg=fibeamer@brightViolet!80!white}% + \setbeamercolor{alerted text}{fg=fibeamer@orange}% \fi}{} - %% Items +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Items, footnotes and links \setbeamercolor{item}{fg=fibeamer@violet} \setbeamercolor{footnote mark}{fg=fibeamer@violet} + \hypersetup{urlcolor=fibeamer@violet} %% Blocks \setbeamercolor{block title}{% - fg=white, bg=fibeamer@violet!50!white} + fg=fibeamer@white, bg=fibeamer@violet} \setbeamercolor{block title example}{% - fg=white, bg=fibeamer@violet!50!white} + fg=fibeamer@white, bg=fibeamer@violet} \setbeamercolor{block title alerted}{% - fg=white, bg=fibeamer@violet} + fg=fibeamer@white, bg=red} \setbeamercolor{block body}{% - fg=fibeamer@violet, bg=fibeamer@gray!20!white} + fg=fibeamer@violet, bg=fibeamer@gray!20!fibeamer@white} %% Title - \setbeamercolor{title}{fg=white, bg=fibeamer@violet} + \setbeamercolor{title}{fg=fibeamer@white, bg=fibeamer@violet} % Code listings \lstset{% basicstyle=\footnotesize\ttfamily, breakatwhitespace=false, breaklines=true, - commentstyle=\color{green!60!black}, + commentstyle=\color{green!60!fibeamer@black}, extendedchars=true, keywordstyle=\color{blue}, showspaces=false, diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/med.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/med.dtx index 722af59024f..2bab01c8b86 100644 --- a/Master/texmf-dist/source/latex/fibeamer/theme/mu/med.dtx +++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/med.dtx @@ -5,21 +5,32 @@ % \begin{macrocode} \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{fibeamer/theme/mu/% - beamercolorthemefibeamer-mu-med}[2016/01/14] + beamercolorthemefibeamer-mu-med}[2016/05/06] \mode % \end{macrocode} -% This color theme uses the combination of red, gray and -% white. The |fibeamer@back|\-|groundInner| and -% |fibeamer@backgroundOuter| colors are used within the background -% canvas template, which is defined within the color theme of the -% Masaryk University and which draws the gradient background of -% dark frames. +% This color theme uses the combination of yellow and shades of gray. The +% |fibeamer@{dark,|\-|light}@background{Inner,|\-|Outer}| colors are used +% within the background canvas template, which is defined within the base +% color theme of the Masaryk University and which draws the gradient +% background of the frames. % \begin{macrocode} + \definecolor{fibeamer@black}{HTML}{000000} + \definecolor{fibeamer@white}{HTML}{FFFFFF} \definecolor{fibeamer@red}{HTML}{c82600} - \definecolor{fibeamer@brightRed}{HTML}{FF350A} + \colorlet{fibeamer@lightRed}{fibeamer@red!30!fibeamer@white} + \colorlet{fibeamer@darkRed}{fibeamer@red!60!fibeamer@black} \definecolor{fibeamer@gray}{HTML}{999999} - \colorlet{fibeamer@backgroundInner}{fibeamer@red} - \colorlet{fibeamer@backgroundOuter}{fibeamer@red!60!black} + \definecolor{fibeamer@lightOrange}{HTML}{FFA25E} + \colorlet{fibeamer@orange}{fibeamer@lightOrange!80!fibeamer@darkRed} +% \end{macrocode} +% \changes{v1.1.4:2}{2016/05/06}{Removed gradient backgrounds from +% the color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Background gradients + \colorlet{fibeamer@dark@backgroundInner}{fibeamer@darkRed} + \colorlet{fibeamer@dark@backgroundOuter}{fibeamer@darkRed} + \colorlet{fibeamer@light@backgroundInner}{fibeamer@white} + \colorlet{fibeamer@light@backgroundOuter}{fibeamer@white} % \end{macrocode} % The |darkframes| environment switches the |\iffibeamer@darktrue| % conditional on and sets a dark color theme. @@ -28,36 +39,42 @@ \begingroup \fibeamer@darktrue %% Structures - \setbeamercolor*{frametitle}{fg=fibeamer@red!30!white} - \setbeamercolor*{framesubtitle}{fg=white} + \setbeamercolor*{frametitle}{fg=fibeamer@lightRed} + \setbeamercolor*{framesubtitle}{fg=fibeamer@white} %% Text - \setbeamercolor*{normal text}{fg=white, bg=fibeamer@red} - \setbeamercolor*{structure}{fg=white, bg=fibeamer@red} + \setbeamercolor*{normal text}{fg=fibeamer@white, bg=fibeamer@red} + \setbeamercolor*{structure}{fg=fibeamer@white, bg=fibeamer@red} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + \setbeamercolor*{alerted text}{fg=fibeamer@lightOrange} +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} - \setbeamercolor*{alerted text}{% - fg=fibeamer@brightRed!60!white!80!yellow} - %% Items - \setbeamercolor*{item}{fg=fibeamer@red!30!white} - \setbeamercolor*{footnote mark}{fg=fibeamer@red!30!white} + %% Items, footnotes and links + \setbeamercolor*{item}{fg=fibeamer@lightRed} + \setbeamercolor*{footnote mark}{fg=fibeamer@lightRed} + \hypersetup{urlcolor=fibeamer@lightRed} %% Blocks \setbeamercolor*{block title}{% - fg=white, bg=fibeamer@red!60!white} + fg=fibeamer@white, bg=fibeamer@red!60!fibeamer@white} \setbeamercolor*{block title example}{% - fg=white, bg=fibeamer@red!60!white} + fg=fibeamer@white, bg=fibeamer@red!60!fibeamer@white} \setbeamercolor*{block title alerted}{% - fg=white, bg=fibeamer@red!90!white} + fg=fibeamer@darkRed, bg=fibeamer@lightOrange} \setbeamercolor*{block body}{% fg=fibeamer@red, - bg=fibeamer@gray!15!white} + bg=fibeamer@gray!15!fibeamer@white} \usebeamercolor*{normal text} % Code listings \lstset{% - commentstyle=\color{green!30!white}, - keywordstyle=\color{blue!30!white}, - stringstyle=\color{fibeamer@red!30!white}} + commentstyle=\color{green!30!fibeamer@white}, + keywordstyle=\color{blue!30!fibeamer@white}, + stringstyle=\color{fibeamer@lightRed}} }{% \endgroup} % \end{macrocode} @@ -65,44 +82,47 @@ % \begin{macrocode} %% Structures \setbeamercolor{frametitle}{fg=fibeamer@red} - \setbeamercolor{framesubtitle}{fg=black!75!white} + \setbeamercolor{framesubtitle}{fg=fibeamer@black!75!fibeamer@white} %% Text - \setbeamercolor{normal text}{fg=black, bg=white} - \setbeamercolor{structure}{fg=black, bg=white} + \setbeamercolor{normal text}{fg=fibeamer@black, bg=fibeamer@white} + \setbeamercolor{structure}{fg=fibeamer@black, bg=fibeamer@white} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} - \setbeamercolor{alerted text}{fg=fibeamer@brightRed} + \setbeamercolor{alerted text}{fg=orange} \addtobeamertemplate{block begin}{% \iffibeamer@dark % alerted text in plain block at dark slides - \setbeamercolor{alerted text}{% - fg=fibeamer@brightRed!80!white!80!yellow}% - \else % alerted text in plain block at light slides - \setbeamercolor{alerted text}{% - fg=fibeamer@brightRed!80!white}% + \setbeamercolor{alerted text}{fg=fibeamer@orange}% \fi}{} - %% Items - \setbeamercolor{item}{fg=fibeamer@red} - \setbeamercolor{footnote mark}{fg=fibeamer@red} +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Items, footnotes and links + \setbeamercolor*{item}{fg=fibeamer@red} + \setbeamercolor*{footnote mark}{fg=fibeamer@red} + \hypersetup{urlcolor=fibeamer@red} %% Blocks \setbeamercolor{block title}{% - fg=white, bg=fibeamer@red!50!white} + fg=fibeamer@white, bg=fibeamer@red} \setbeamercolor{block title example}{% - fg=white, bg=fibeamer@red!50!white} + fg=fibeamer@white, bg=fibeamer@red} \setbeamercolor{block title alerted}{% - fg=white, bg=fibeamer@red} + fg=fibeamer@white, bg=orange} \setbeamercolor{block body}{% - fg=fibeamer@red!90!black, - bg=fibeamer@gray!20!white} + fg=fibeamer@red!90!fibeamer@black, + bg=fibeamer@gray!20!fibeamer@white} %% Title - \setbeamercolor{title}{fg=white, bg=fibeamer@red} + \setbeamercolor{title}{fg=fibeamer@white, bg=fibeamer@red} % Code listings \lstset{% basicstyle=\footnotesize\ttfamily, breakatwhitespace=false, breaklines=true, - commentstyle=\color{green!60!black}, + commentstyle=\color{green!60!fibeamer@black}, extendedchars=true, keywordstyle=\color{blue}, showspaces=false, diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/ped.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/ped.dtx index c37274c2d19..4a0ccebd848 100644 --- a/Master/texmf-dist/source/latex/fibeamer/theme/mu/ped.dtx +++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/ped.dtx @@ -5,23 +5,36 @@ % \begin{macrocode} \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{fibeamer/theme/mu/% - beamercolorthemefibeamer-mu-ped}[2016/01/14] + beamercolorthemefibeamer-mu-ped}[2016/05/06] \mode % \end{macrocode} -% This color theme uses the combination of orange and dark gray in light frames -% and the combination of gold and white in dark frames. The -% |fibeamer@back|\-|groundInner| and |fibeamer@backgroundOuter| colors are used -% within the background canvas template, which is defined within the color -% theme of the Masaryk University and which draws the gradient background of -% dark frames. +% This color theme uses the combination of yellow and shades of gray. The +% |fibeamer@{dark,|\-|light}@background{Inner,|\-|Outer}| colors are used +% within the background canvas template, which is defined within the base +% color theme of the Masaryk University and which draws the gradient +% background of the frames. +% \changes{v1.1.4:1}{2016/05/06}{Completely revamped the color theme of the +% Faculty of Education at the Masaryk University in Brno. [VN]} % \begin{macrocode} - \definecolor{fibeamer@gold}{HTML}{CF7000} - \definecolor{fibeamer@orange}{HTML}{FABE6E} - \definecolor{fibeamer@darkOrange}{HTML}{F89C22} - \definecolor{fibeamer@brightOrange}{HTML}{FF4000} - \definecolor{fibeamer@gray}{HTML}{999999} - \colorlet{fibeamer@backgroundInner}{fibeamer@gold} - \colorlet{fibeamer@backgroundOuter}{fibeamer@gold!60!black} + \definecolor{fibeamer@black}{HTML}{2B2E34} + \definecolor{fibeamer@white}{HTML}{FFFFFF} + \definecolor{fibeamer@lightOrange}{HTML}{FFA25E} + \definecolor{fibeamer@orange}{HTML}{FF5500} + \colorlet{fibeamer@lightGray}{white!80!fibeamer@black} + \colorlet{fibeamer@gray}{white!35!fibeamer@black} + \colorlet{fibeamer@darkGray}{white!20!fibeamer@black} + \colorlet{fibeamer@blue}{blue!60!fibeamer@lightGray} + \colorlet{fibeamer@darkRed}{red!80!fibeamer@white} + \definecolor{fibeamer@lightRed}{HTML}{FF8B8B} +% \end{macrocode} +% \changes{v1.1.4:2}{2016/05/06}{Removed gradient backgrounds from +% the color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Background gradients + \colorlet{fibeamer@dark@backgroundInner}{fibeamer@black} + \colorlet{fibeamer@dark@backgroundOuter}{fibeamer@black} + \colorlet{fibeamer@light@backgroundInner}{fibeamer@white} + \colorlet{fibeamer@light@backgroundOuter}{fibeamer@white} % \end{macrocode} % The |darkframes| environment switches the |\iffibeamer@darktrue| % conditional on and sets a dark color theme. @@ -30,74 +43,90 @@ \begingroup \fibeamer@darktrue %% Structures - \setbeamercolor*{frametitle}{fg=fibeamer@gold!30!white} - \setbeamercolor*{framesubtitle}{fg=white} + \setbeamercolor*{frametitle}{fg=fibeamer@lightOrange} + \setbeamercolor*{framesubtitle}{fg=fibeamer@lightGray} %% Text - \setbeamercolor*{normal text}{fg=white, bg=fibeamer@gold} - \setbeamercolor*{structure}{fg=white, bg=fibeamer@gold} + \setbeamercolor*{normal text}{fg=white, bg=fibeamer@black} + \setbeamercolor*{structure}{fg=white, bg=fibeamer@black} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + \setbeamercolor*{alerted text}{fg=fibeamer@lightRed} +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} - \setbeamercolor*{alerted text}{% - fg=white!40!fibeamer@brightOrange} - %% Items - \setbeamercolor*{item}{fg=fibeamer@gold!30!white} - \setbeamercolor*{footnote mark}{fg=fibeamer@gold!30!white} + %% Items, footnotes and links + \setbeamercolor*{item}{fg=fibeamer@lightOrange} + \setbeamercolor*{footnote mark}{fg=fibeamer@lightOrange} + \hypersetup{urlcolor=fibeamer@lightOrange} %% Blocks \setbeamercolor*{block title}{% - fg=white, bg=fibeamer@gold!60!white} + fg=fibeamer@black, bg=fibeamer@lightOrange} \setbeamercolor*{block title example}{% - fg=white, bg=fibeamer@gold!60!white} + fg=fibeamer@lightOrange, bg=fibeamer@darkGray} \setbeamercolor*{block title alerted}{% - fg=white, bg=fibeamer@gold!90!white} + fg=fibeamer@black, bg=fibeamer@lightRed} \setbeamercolor*{block body}{% - fg=fibeamer@gold, - bg=fibeamer@gray!15!white} + fg=fibeamer@white, + bg=fibeamer@darkGray} \usebeamercolor*{normal text} % Code listings \lstset{% commentstyle=\color{green!30!white}, keywordstyle=\color{blue!30!white}, - stringstyle=\color{fibeamer@gold!30!white}} + stringstyle=\color{fibeamer@orange!30!white}} }{% \endgroup} % \end{macrocode} % Outside the |darkframes| environment, the light theme is used. % \begin{macrocode} %% Structures - \setbeamercolor{frametitle}{fg=fibeamer@darkOrange} - \setbeamercolor{framesubtitle}{fg=black!60!white} + \setbeamercolor{frametitle}{fg=fibeamer@black} + \setbeamercolor{framesubtitle}{fg=fibeamer@gray} %% Text - \setbeamercolor{normal text}{fg=black!75!white, bg=white} - \setbeamercolor{structure}{fg=black!75!white, bg=white} + \setbeamercolor{normal text}{fg=fibeamer@black, bg=fibeamer@white} + \setbeamercolor{structure}{fg=fibeamer@black, bg=fibeamer@white} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} - \setbeamercolor{alerted text}{fg=fibeamer@brightOrange} + \setbeamercolor{alerted text}{fg=red} \addtobeamertemplate{block begin}{% - \iffibeamer@dark % alerted text in plain block at dark slides - \setbeamercolor{alerted text}{% - fg=white!20!fibeamer@brightOrange}% - \else % alerted text in plain block at light slides - \setbeamercolor{alerted text}{% - fg=white!20!fibeamer@brightOrange}% + \iffibeamer@dark\else % alerted text in plain blocks at light slides + \setbeamercolor{alerted text}{fg=fibeamer@darkRed} \fi}{} - %% Items - \setbeamercolor{item}{fg=fibeamer@darkOrange} - \setbeamercolor{footnote mark}{fg=fibeamer@darkOrange} +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Items, footnotes and links + \setbeamercolor*{item}{fg=fibeamer@orange} + \setbeamercolor*{footnote mark}{fg=fibeamer@orange} + \hypersetup{urlcolor=fibeamer@blue} %% Blocks \setbeamercolor{block title}{% - fg=black!75!white, bg=fibeamer@orange} + fg=fibeamer@black, bg=fibeamer@lightOrange} \setbeamercolor{block title example}{% - fg=black!75!white, bg=fibeamer@orange} + fg=fibeamer@lightOrange, bg=fibeamer@black} \setbeamercolor{block title alerted}{% - fg=white, bg=black!75!white} + fg=fibeamer@white, bg=red} \setbeamercolor{block body}{% - fg=fibeamer@orange, bg=black!75!white} + fg=white, bg=fibeamer@black} %% Title - \setbeamercolor{title}{fg=white, bg=fibeamer@gold} + \setbeamercolor{title}{fg=fibeamer@lightOrange, bg=fibeamer@black} +% \end{macrocode} +% \changes{v1.1.4:4}{2016/05/06}{Added support for subtitle and +% author name coloring within the color themes of the Masaryk +% University in Brno. [VN]} +% \begin{macrocode} + \setbeamercolor{subtitle}{fg=fibeamer@white, bg=fibeamer@black} + \setbeamercolor{author}{fg=fibeamer@lightGray, bg=fibeamer@black} % Code listings \lstset{% basicstyle=\footnotesize\ttfamily, @@ -105,7 +134,7 @@ breaklines=true, commentstyle=\color{green!60!black}, extendedchars=true, - keywordstyle=\color{blue}, + keywordstyle=\color{fibeamer@blue}, showspaces=false, showstringspaces=false, showtabs=false, diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/phil.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/phil.dtx index 6a372ee51bb..7f4a8a9bc57 100644 --- a/Master/texmf-dist/source/latex/fibeamer/theme/mu/phil.dtx +++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/phil.dtx @@ -5,21 +5,32 @@ % \begin{macrocode} \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{fibeamer/theme/mu/% - beamercolorthemefibeamer-mu-phil}[2016/01/14] + beamercolorthemefibeamer-mu-phil}[2016/05/06] \mode % \end{macrocode} -% This color theme uses the combination of aquamarine, gray and -% white. The |fibeamer@back|\-|groundInner| and -% |fibeamer@backgroundOuter| colors are used within the background -% canvas template, which is defined within the color theme of the -% Masaryk University and which draws the gradient background of -% dark frames. +% This color theme uses the combination of yellow and shades of gray. The +% |fibeamer@{dark,|\-|light}@background{Inner,|\-|Outer}| colors are used +% within the background canvas template, which is defined within the base +% color theme of the Masaryk University and which draws the gradient +% background of the frames. % \begin{macrocode} + \definecolor{fibeamer@black}{HTML}{000000} + \definecolor{fibeamer@white}{HTML}{FFFFFF} \definecolor{fibeamer@blue}{HTML}{0071B2} - \definecolor{fibeamer@brightBlue}{HTML}{38B3FA} + \colorlet{fibeamer@lightBlue}{fibeamer@blue!30!fibeamer@white} + \colorlet{fibeamer@darkBlue}{fibeamer@blue!60!fibeamer@black} \definecolor{fibeamer@gray}{HTML}{999999} - \colorlet{fibeamer@backgroundInner}{fibeamer@blue!80!black} - \colorlet{fibeamer@backgroundOuter}{fibeamer@blue!60!black} + \definecolor{fibeamer@lightOrange}{HTML}{FFA25E} + \colorlet{fibeamer@orange}{fibeamer@lightOrange!80!fibeamer@darkBlue} +% \end{macrocode} +% \changes{v1.1.4:2}{2016/05/06}{Removed gradient backgrounds from +% the color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Background gradients + \colorlet{fibeamer@dark@backgroundInner}{fibeamer@darkBlue} + \colorlet{fibeamer@dark@backgroundOuter}{fibeamer@darkBlue} + \colorlet{fibeamer@light@backgroundInner}{fibeamer@white} + \colorlet{fibeamer@light@backgroundOuter}{fibeamer@white} % \end{macrocode} % The |darkframes| environment switches the |\iffibeamer@darktrue| % conditional on and sets a dark color theme. @@ -28,35 +39,42 @@ \begingroup \fibeamer@darktrue %% Structures - \setbeamercolor*{frametitle}{fg=fibeamer@blue!30!white} - \setbeamercolor*{framesubtitle}{fg=white} + \setbeamercolor*{frametitle}{fg=fibeamer@lightBlue} + \setbeamercolor*{framesubtitle}{fg=fibeamer@white} %% Text - \setbeamercolor*{normal text}{fg=white, bg=fibeamer@blue} - \setbeamercolor*{structure}{fg=white, bg=fibeamer@blue} + \setbeamercolor*{normal text}{fg=fibeamer@white, bg=fibeamer@blue} + \setbeamercolor*{structure}{fg=fibeamer@white, bg=fibeamer@blue} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + \setbeamercolor*{alerted text}{fg=fibeamer@lightOrange} +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} - \setbeamercolor*{alerted text}{fg=fibeamer@brightBlue!75!white} - %% Items - \setbeamercolor*{item}{fg=fibeamer@blue!30!white} - \setbeamercolor*{footnote mark}{fg=fibeamer@blue!30!white} + %% Items, footnotes and links + \setbeamercolor*{item}{fg=fibeamer@lightBlue} + \setbeamercolor*{footnote mark}{fg=fibeamer@lightBlue} + \hypersetup{urlcolor=fibeamer@lightBlue} %% Blocks \setbeamercolor*{block title}{% - fg=white, bg=fibeamer@blue!60!white} + fg=fibeamer@white, bg=fibeamer@blue!60!fibeamer@white} \setbeamercolor*{block title example}{% - fg=white, bg=fibeamer@blue!60!white} + fg=fibeamer@white, bg=fibeamer@blue!60!fibeamer@white} \setbeamercolor*{block title alerted}{% - fg=white, bg=fibeamer@blue} + fg=fibeamer@darkBlue, bg=fibeamer@lightOrange} \setbeamercolor*{block body}{% fg=fibeamer@blue, - bg=fibeamer@gray!15!white} + bg=fibeamer@gray!15!fibeamer@white} \usebeamercolor*{normal text} % Code listings \lstset{% - commentstyle=\color{green!30!white}, - keywordstyle=\color{fibeamer@blue!30!white}, - stringstyle=\color{red!30!white}} + commentstyle=\color{green!30!fibeamer@white}, + keywordstyle=\color{fibeamer@lightBlue}, + stringstyle=\color{red!30!fibeamer@white}} }{% \endgroup} % \end{macrocode} @@ -64,41 +82,46 @@ % \begin{macrocode} %% Structures \setbeamercolor{frametitle}{fg=fibeamer@blue} - \setbeamercolor{framesubtitle}{fg=black!75!white} + \setbeamercolor{framesubtitle}{fg=fibeamer@black!75!fibeamer@white} %% Text - \setbeamercolor{normal text}{fg=black, bg=white} - \setbeamercolor{structure}{fg=black, bg=white} + \setbeamercolor{normal text}{fg=fibeamer@black, bg=fibeamer@white} + \setbeamercolor{structure}{fg=fibeamer@black, bg=fibeamer@white} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} - \setbeamercolor{alerted text}{fg=fibeamer@brightBlue} + \setbeamercolor{alerted text}{fg=red} \addtobeamertemplate{block begin}{% \iffibeamer@dark % alerted text in plain block at dark slides - \setbeamercolor{alerted text}{fg=fibeamer@brightBlue}% - \else % alerted text in plain block at light slides - \setbeamercolor{alerted text}{fg=fibeamer@brightBlue!80!white}% + \setbeamercolor{alerted text}{fg=fibeamer@orange}% \fi}{} - %% Items - \setbeamercolor{item}{fg=fibeamer@blue} - \setbeamercolor{footnote mark}{fg=fibeamer@blue} +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Items, footnotes and links + \setbeamercolor*{item}{fg=fibeamer@blue} + \setbeamercolor*{footnote mark}{fg=fibeamer@blue} + \hypersetup{urlcolor=fibeamer@blue} %% Blocks \setbeamercolor{block title}{% - fg=white, bg=fibeamer@blue!50!white} + fg=fibeamer@white, bg=fibeamer@blue} \setbeamercolor{block title example}{% - fg=white, bg=fibeamer@blue!50!white} + fg=fibeamer@white, bg=fibeamer@blue} \setbeamercolor{block title alerted}{% - fg=white, bg=fibeamer@blue} + fg=fibeamer@white, bg=red} \setbeamercolor{block body}{% - fg=fibeamer@blue, bg=fibeamer@gray!20!white} + fg=fibeamer@blue, bg=fibeamer@gray!20!fibeamer@white} %% Title - \setbeamercolor{title}{fg=white, bg=fibeamer@blue} + \setbeamercolor{title}{fg=fibeamer@white, bg=fibeamer@blue} % Code listings \lstset{% basicstyle=\footnotesize\ttfamily, breakatwhitespace=false, breaklines=true, - commentstyle=\color{green!60!black}, + commentstyle=\color{green!60!fibeamer@black}, extendedchars=true, keywordstyle=\color{fibeamer@blue}, showspaces=false, diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/sci.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/sci.dtx index 86816e7b115..836c960fcbd 100644 --- a/Master/texmf-dist/source/latex/fibeamer/theme/mu/sci.dtx +++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/sci.dtx @@ -5,21 +5,32 @@ % \begin{macrocode} \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{fibeamer/theme/mu/% - beamercolorthemefibeamer-mu-sci}[2016/01/14] + beamercolorthemefibeamer-mu-sci}[2016/05/06] \mode % \end{macrocode} -% This color theme uses the combination of green, gray and -% white. The |fibeamer@back|\-|groundInner| and -% |fibeamer@backgroundOuter| colors are used within the background -% canvas template, which is defined within the color theme of the -% Masaryk University and which draws the gradient background of -% dark frames. +% This color theme uses the combination of yellow and shades of gray. The +% |fibeamer@{dark,|\-|light}@background{Inner,|\-|Outer}| colors are used +% within the background canvas template, which is defined within the base +% color theme of the Masaryk University and which draws the gradient +% background of the frames. % \begin{macrocode} + \definecolor{fibeamer@black}{HTML}{000000} + \definecolor{fibeamer@white}{HTML}{FFFFFF} \definecolor{fibeamer@green}{HTML}{139632} \definecolor{fibeamer@gray}{HTML}{999999} - \definecolor{fibeamer@brightGreen}{HTML}{2ECE0F} - \colorlet{fibeamer@backgroundInner}{fibeamer@green!90!black} - \colorlet{fibeamer@backgroundOuter}{fibeamer@green!60!black} + \colorlet{fibeamer@lightGreen}{fibeamer@green!30!fibeamer@white} + \colorlet{fibeamer@darkGreen}{fibeamer@green!60!fibeamer@black} + \definecolor{fibeamer@lightOrange}{HTML}{FFA25E} + \colorlet{fibeamer@orange}{fibeamer@lightOrange!80!fibeamer@darkGreen} +% \end{macrocode} +% \changes{v1.1.4:2}{2016/05/06}{Removed gradient backgrounds from +% the color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Background gradients + \colorlet{fibeamer@dark@backgroundInner}{fibeamer@darkGreen} + \colorlet{fibeamer@dark@backgroundOuter}{fibeamer@darkGreen} + \colorlet{fibeamer@light@backgroundInner}{fibeamer@white} + \colorlet{fibeamer@light@backgroundOuter}{fibeamer@white} % \end{macrocode} % The |darkframes| environment switches the |\iffibeamer@darktrue| % conditional on and sets a dark color theme. @@ -28,36 +39,43 @@ \begingroup \fibeamer@darktrue %% Structures - \setbeamercolor*{frametitle}{fg=fibeamer@green!30!white} - \setbeamercolor*{framesubtitle}{fg=white} + \setbeamercolor*{frametitle}{fg=fibeamer@lightGreen} + \setbeamercolor*{framesubtitle}{fg=fibeamer@white} %% Text - \setbeamercolor*{normal text}{fg=white, bg=fibeamer@green} - \setbeamercolor*{structure}{fg=white, bg=fibeamer@green} + \setbeamercolor*{normal text}{fg=fibeamer@white, bg=fibeamer@green} + \setbeamercolor*{structure}{fg=fibeamer@white, bg=fibeamer@green} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} \setbeamercolor*{alerted text}{% - fg=fibeamer@brightGreen!75!white} - %% Items - \setbeamercolor*{item}{fg=fibeamer@green!30!white} - \setbeamercolor*{footnote mark}{fg=fibeamer@green!30!white} + fg=fibeamer@lightOrange} +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Items, footnotes and links + \setbeamercolor*{item}{fg=fibeamer@lightGreen} + \setbeamercolor*{footnote mark}{fg=fibeamer@lightGreen} + \hypersetup{urlcolor=fibeamer@lightGreen} %% Blocks \setbeamercolor*{block title}{% - fg=white, bg=fibeamer@green!60!white} + fg=fibeamer@white, bg=fibeamer@green!60!fibeamer@white} \setbeamercolor*{block title example}{% - fg=white, bg=fibeamer@green!60!white} + fg=fibeamer@white, bg=fibeamer@green!60!fibeamer@white} \setbeamercolor*{block title alerted}{% - fg=white, bg=fibeamer@green} + fg=fibeamer@darkGreen, bg=fibeamer@lightOrange} \setbeamercolor*{block body}{% fg=fibeamer@green, - bg=fibeamer@gray!15!white} + bg=fibeamer@gray!15!fibeamer@white} \usebeamercolor*{normal text} % Code listings \lstset{% - commentstyle=\color{green!30!white}, - keywordstyle=\color{blue!30!white}, - stringstyle=\color{red!30!white}} + commentstyle=\color{green!30!fibeamer@white}, + keywordstyle=\color{blue!30!fibeamer@white}, + stringstyle=\color{red!30!fibeamer@white}} }{% \endgroup} % \end{macrocode} @@ -65,41 +83,46 @@ % \begin{macrocode} %% Structures \setbeamercolor{frametitle}{fg=fibeamer@green} - \setbeamercolor{framesubtitle}{fg=black!75!white} + \setbeamercolor{framesubtitle}{fg=fibeamer@black!75!fibeamer@white} %% Text - \setbeamercolor{normal text}{fg=black, bg=white} - \setbeamercolor{structure}{fg=black, bg=white} + \setbeamercolor{normal text}{fg=fibeamer@black, bg=fibeamer@white} + \setbeamercolor{structure}{fg=fibeamer@black, bg=fibeamer@white} % \end{macrocode} % \changes{v1.1.0:7}{2016/01/12}{Added support for \cs{alert} to % the themes of the Masaryk University in Brno. [VN]} +% \changes{v1.1.4:5}{2016/06/06}{Unified the alert colors in the +% color themes of the Masaryk University in Brno. [VN]} % \begin{macrocode} - \setbeamercolor{alerted text}{fg=fibeamer@brightGreen} + \setbeamercolor{alerted text}{fg=red} \addtobeamertemplate{block begin}{% \iffibeamer@dark % alerted text in plain block at dark slides - \setbeamercolor{alerted text}{fg=fibeamer@brightGreen!90!white}% - \else % alerted text in plain block at light slides - \setbeamercolor{alerted text}{fg=fibeamer@brightGreen!80!white}% + \setbeamercolor{alerted text}{fg=fibeamer@orange}% \fi}{} - %% Items - \setbeamercolor{item}{fg=fibeamer@green} - \setbeamercolor{footnote mark}{fg=fibeamer@green} +% \end{macrocode} +% \changes{v1.1.4:3}{2016/05/06}{Added proper link coloring for the +% color themes of the Masaryk University in Brno. [VN]} +% \begin{macrocode} + %% Items, footnotes and links + \setbeamercolor*{item}{fg=fibeamer@green} + \setbeamercolor*{footnote mark}{fg=fibeamer@green} + \hypersetup{urlcolor=fibeamer@green} %% Blocks \setbeamercolor{block title}{% - fg=white, bg=fibeamer@green!50!white} + fg=fibeamer@white, bg=fibeamer@green} \setbeamercolor{block title example}{% - fg=white, bg=fibeamer@green!50!white} + fg=fibeamer@white, bg=fibeamer@green} \setbeamercolor{block title alerted}{% - fg=white, bg=fibeamer@green} + fg=fibeamer@white, bg=red} \setbeamercolor{block body}{% - fg=fibeamer@green, bg=fibeamer@gray!20!white} + fg=fibeamer@green, bg=fibeamer@gray!20!fibeamer@white} %% Title - \setbeamercolor{title}{fg=white, bg=fibeamer@green} + \setbeamercolor{title}{fg=fibeamer@white, bg=fibeamer@green} % Code listings \lstset{% basicstyle=\footnotesize\ttfamily, breakatwhitespace=false, breaklines=true, - commentstyle=\color{green!60!black}, + commentstyle=\color{green!60!fibeamer@black}, extendedchars=true, keywordstyle=\color{blue}, showspaces=false, -- cgit v1.2.3