How do I change the colouring of my Beamer template?How to create custom beamer templateTemplate which can...

Starting index at zero

In which way proportional valves are controlled solely by current?

It took me a lot of time to make this, pls like. (YouTube Comments #1)

Is there a math equivalent to the conditional ternary operator?

How can I handle a player who pre-plans arguments about my rulings on RAW?

Is divide-by-zero a security vulnerability?

Make me a metasequence

"Lived a lion" or "there lived a lion"

How do you say “my friend is throwing a party, do you wanna come?” in german

Do you continue making death saving throws while petrified?

In Adventurer's League, is it possible to keep the Ring of Winter if you manage to acquire it in the Tomb of Annihilation adventure?

What type of investment is best suited for a 1-year investment on a down payment?

What are SHA-rounds?

Reason why dimensional travelling would be restricted

Where is the line between being obedient and getting bullied by a boss?

Movie: Scientists travel to the future to avoid nuclear war, last surviving one is used as fuel by future humans

Rationale to prefer local variables over instance variables?

I encountered my boss during an on-site interview at another company. Should I bring it up when seeing him next time?

What is a term for a function that when called repeatedly, has the same effect as calling once?

Which sins are beyond punishment?

Are paired adjectives bad style?

The need of reserving one's ability in job interviews

How can I be pwned if I'm not registered on the compromised site?

I can't die. Who am I?



How do I change the colouring of my Beamer template?


How to create custom beamer templateTemplate which can changeLatex beamer templateHow to use a LaTeX beamer (template)Beamer TemplateHow to change the Institute name from the templatehow to redefine beamer templateLaTeX beamer: pagenumbering appendixChange logo in a beamer templateBeamer Template Structure?













1















Okay. I am trying to change the colour of my beamer template. I am using Copenhagen and wolverine.



Here is what the slides look like, as well as the code I am using.



enter image description here



documentclass[t,aspectratio=169]{beamer}
usepackage[utf8]{inputenc}
usetheme{Copenhagen}
usecolortheme{wolverine}
beamertemplatenavigationsymbolsempty % Removes the interactive buttons
setbeamertemplate{headline}{} % Removes the header sections

% ADDS SLIDE NUMBERS
%newcommand*oldmacro{}%
%letoldmacroinsertshorttitle%
%renewcommand*insertshorttitle{%
% oldmacrohfill%
% insertframenumber,/,inserttotalframenumber}

% Additional packages needed
usepackage{amsmath} % For ???
usepackage{dsfont} % For mathds font
usepackage{hologo} % For BibTeX font
usepackage{lmodern} % For ???

%Information to be included in the title page:
title{Central Bank Watching}

author{NAME}

institute[University]
{
University newline newline March 2019
}

date[today]{}

titlegraphic{flushleft includegraphics[scale=0.25]{UNI.png}}

% The below defines the footer such that it is:
% First Last (Institution) || Title frame / frame total
setbeamertemplate{footline}{%
leavevmode%
hbox{begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm plus1fill,rightskip=.3cm]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthor~(insertshortinstitute)
end{beamercolorbox}%
begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitlehfillinsertframenumber,/,inserttotalframenumber
end{beamercolorbox}}%
vskip0pt%
}

% The below is used for creating section pages
makeatletter
setbeamertemplate{section page}
{
begin{centering}
begin{beamercolorbox}[sep=12pt,center,colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]{part title}
usebeamerfont{section title}insertsectionpar
end{beamercolorbox}
end{centering}
}
% setbeamertemplate{section page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
setbeamertemplate{subsection page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
makeatother

AtBeginSection[]{
begin{frame}[plain,c]
sectionpage
end{frame}
}

begin{document}

frame{titlepage}

...

end{document}


I'd like to change the yellow to the following RGB: 69, 91, 196



and the orange to the following RGB: 168, 178, 85



How can I do this?



Thanks!










share|improve this question























  • If you're changing yellow to a blue, and orange to a green, then why are you starting with that color theme?

    – Teepeemm
    22 hours ago











  • @Teepeemm, to my knowledge, there isn't a blue/green theme combo that exists already? Also I changed universities, and Copenhagen/wolverine theme worked nicely with my former university's colours.

    – eBopBob
    22 hours ago
















1















Okay. I am trying to change the colour of my beamer template. I am using Copenhagen and wolverine.



Here is what the slides look like, as well as the code I am using.



enter image description here



documentclass[t,aspectratio=169]{beamer}
usepackage[utf8]{inputenc}
usetheme{Copenhagen}
usecolortheme{wolverine}
beamertemplatenavigationsymbolsempty % Removes the interactive buttons
setbeamertemplate{headline}{} % Removes the header sections

% ADDS SLIDE NUMBERS
%newcommand*oldmacro{}%
%letoldmacroinsertshorttitle%
%renewcommand*insertshorttitle{%
% oldmacrohfill%
% insertframenumber,/,inserttotalframenumber}

% Additional packages needed
usepackage{amsmath} % For ???
usepackage{dsfont} % For mathds font
usepackage{hologo} % For BibTeX font
usepackage{lmodern} % For ???

%Information to be included in the title page:
title{Central Bank Watching}

author{NAME}

institute[University]
{
University newline newline March 2019
}

date[today]{}

titlegraphic{flushleft includegraphics[scale=0.25]{UNI.png}}

% The below defines the footer such that it is:
% First Last (Institution) || Title frame / frame total
setbeamertemplate{footline}{%
leavevmode%
hbox{begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm plus1fill,rightskip=.3cm]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthor~(insertshortinstitute)
end{beamercolorbox}%
begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitlehfillinsertframenumber,/,inserttotalframenumber
end{beamercolorbox}}%
vskip0pt%
}

% The below is used for creating section pages
makeatletter
setbeamertemplate{section page}
{
begin{centering}
begin{beamercolorbox}[sep=12pt,center,colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]{part title}
usebeamerfont{section title}insertsectionpar
end{beamercolorbox}
end{centering}
}
% setbeamertemplate{section page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
setbeamertemplate{subsection page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
makeatother

AtBeginSection[]{
begin{frame}[plain,c]
sectionpage
end{frame}
}

begin{document}

frame{titlepage}

...

end{document}


I'd like to change the yellow to the following RGB: 69, 91, 196



and the orange to the following RGB: 168, 178, 85



How can I do this?



Thanks!










share|improve this question























  • If you're changing yellow to a blue, and orange to a green, then why are you starting with that color theme?

    – Teepeemm
    22 hours ago











  • @Teepeemm, to my knowledge, there isn't a blue/green theme combo that exists already? Also I changed universities, and Copenhagen/wolverine theme worked nicely with my former university's colours.

    – eBopBob
    22 hours ago














1












1








1








Okay. I am trying to change the colour of my beamer template. I am using Copenhagen and wolverine.



Here is what the slides look like, as well as the code I am using.



enter image description here



documentclass[t,aspectratio=169]{beamer}
usepackage[utf8]{inputenc}
usetheme{Copenhagen}
usecolortheme{wolverine}
beamertemplatenavigationsymbolsempty % Removes the interactive buttons
setbeamertemplate{headline}{} % Removes the header sections

% ADDS SLIDE NUMBERS
%newcommand*oldmacro{}%
%letoldmacroinsertshorttitle%
%renewcommand*insertshorttitle{%
% oldmacrohfill%
% insertframenumber,/,inserttotalframenumber}

% Additional packages needed
usepackage{amsmath} % For ???
usepackage{dsfont} % For mathds font
usepackage{hologo} % For BibTeX font
usepackage{lmodern} % For ???

%Information to be included in the title page:
title{Central Bank Watching}

author{NAME}

institute[University]
{
University newline newline March 2019
}

date[today]{}

titlegraphic{flushleft includegraphics[scale=0.25]{UNI.png}}

% The below defines the footer such that it is:
% First Last (Institution) || Title frame / frame total
setbeamertemplate{footline}{%
leavevmode%
hbox{begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm plus1fill,rightskip=.3cm]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthor~(insertshortinstitute)
end{beamercolorbox}%
begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitlehfillinsertframenumber,/,inserttotalframenumber
end{beamercolorbox}}%
vskip0pt%
}

% The below is used for creating section pages
makeatletter
setbeamertemplate{section page}
{
begin{centering}
begin{beamercolorbox}[sep=12pt,center,colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]{part title}
usebeamerfont{section title}insertsectionpar
end{beamercolorbox}
end{centering}
}
% setbeamertemplate{section page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
setbeamertemplate{subsection page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
makeatother

AtBeginSection[]{
begin{frame}[plain,c]
sectionpage
end{frame}
}

begin{document}

frame{titlepage}

...

end{document}


I'd like to change the yellow to the following RGB: 69, 91, 196



and the orange to the following RGB: 168, 178, 85



How can I do this?



Thanks!










share|improve this question














Okay. I am trying to change the colour of my beamer template. I am using Copenhagen and wolverine.



Here is what the slides look like, as well as the code I am using.



enter image description here



documentclass[t,aspectratio=169]{beamer}
usepackage[utf8]{inputenc}
usetheme{Copenhagen}
usecolortheme{wolverine}
beamertemplatenavigationsymbolsempty % Removes the interactive buttons
setbeamertemplate{headline}{} % Removes the header sections

% ADDS SLIDE NUMBERS
%newcommand*oldmacro{}%
%letoldmacroinsertshorttitle%
%renewcommand*insertshorttitle{%
% oldmacrohfill%
% insertframenumber,/,inserttotalframenumber}

% Additional packages needed
usepackage{amsmath} % For ???
usepackage{dsfont} % For mathds font
usepackage{hologo} % For BibTeX font
usepackage{lmodern} % For ???

%Information to be included in the title page:
title{Central Bank Watching}

author{NAME}

institute[University]
{
University newline newline March 2019
}

date[today]{}

titlegraphic{flushleft includegraphics[scale=0.25]{UNI.png}}

% The below defines the footer such that it is:
% First Last (Institution) || Title frame / frame total
setbeamertemplate{footline}{%
leavevmode%
hbox{begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm plus1fill,rightskip=.3cm]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthor~(insertshortinstitute)
end{beamercolorbox}%
begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitlehfillinsertframenumber,/,inserttotalframenumber
end{beamercolorbox}}%
vskip0pt%
}

% The below is used for creating section pages
makeatletter
setbeamertemplate{section page}
{
begin{centering}
begin{beamercolorbox}[sep=12pt,center,colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]{part title}
usebeamerfont{section title}insertsectionpar
end{beamercolorbox}
end{centering}
}
% setbeamertemplate{section page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
setbeamertemplate{subsection page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
makeatother

AtBeginSection[]{
begin{frame}[plain,c]
sectionpage
end{frame}
}

begin{document}

frame{titlepage}

...

end{document}


I'd like to change the yellow to the following RGB: 69, 91, 196



and the orange to the following RGB: 168, 178, 85



How can I do this?



Thanks!







beamer templates






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 23 hours ago









eBopBobeBopBob

435




435













  • If you're changing yellow to a blue, and orange to a green, then why are you starting with that color theme?

    – Teepeemm
    22 hours ago











  • @Teepeemm, to my knowledge, there isn't a blue/green theme combo that exists already? Also I changed universities, and Copenhagen/wolverine theme worked nicely with my former university's colours.

    – eBopBob
    22 hours ago



















  • If you're changing yellow to a blue, and orange to a green, then why are you starting with that color theme?

    – Teepeemm
    22 hours ago











  • @Teepeemm, to my knowledge, there isn't a blue/green theme combo that exists already? Also I changed universities, and Copenhagen/wolverine theme worked nicely with my former university's colours.

    – eBopBob
    22 hours ago

















If you're changing yellow to a blue, and orange to a green, then why are you starting with that color theme?

– Teepeemm
22 hours ago





If you're changing yellow to a blue, and orange to a green, then why are you starting with that color theme?

– Teepeemm
22 hours ago













@Teepeemm, to my knowledge, there isn't a blue/green theme combo that exists already? Also I changed universities, and Copenhagen/wolverine theme worked nicely with my former university's colours.

– eBopBob
22 hours ago





@Teepeemm, to my knowledge, there isn't a blue/green theme combo that exists already? Also I changed universities, and Copenhagen/wolverine theme worked nicely with my former university's colours.

– eBopBob
22 hours ago










1 Answer
1






active

oldest

votes


















2














Adding



definecolor{aa}{RGB}{69, 91, 196}
definecolor{bb}{RGB}{168, 178, 85}
setbeamercolor*{palette primary}{bg=aa}
setbeamercolor*{palette quaternary}{bg=bb}


does the trick.



Alternatively you could manually change individual colors like this:



setbeamercolor{title}{bg=aa}


But this requires a lot more trial and error if you don't know how your particular template is set-up.



enter image description here



documentclass[t,aspectratio=169]{beamer}
usepackage[utf8]{inputenc}
usetheme{Copenhagen}
usecolortheme{wolverine}
beamertemplatenavigationsymbolsempty % Removes the interactive buttons
setbeamertemplate{headline}{} % Removes the header sections

definecolor{aa}{RGB}{69, 91, 196}
definecolor{bb}{RGB}{168, 178, 85}
setbeamercolor*{palette primary}{bg=aa}
setbeamercolor*{palette quaternary}{bg=bb}



% ADDS SLIDE NUMBERS
%newcommand*oldmacro{}%
%letoldmacroinsertshorttitle%
%renewcommand*insertshorttitle{%
% oldmacrohfill%
% insertframenumber,/,inserttotalframenumber}

% Additional packages needed
usepackage{amsmath} % For ???
usepackage{dsfont} % For mathds font
usepackage{hologo} % For BibTeX font
usepackage{lmodern} % For ???

%Information to be included in the title page:
title{Central Bank Watching}

author{NAME}

institute[University]
{
University newline newline March 2019
}

date[today]{}

titlegraphic{flushleft includegraphics[scale=0.25]{UNI.png}}

% The below defines the footer such that it is:
% First Last (Institution) || Title frame / frame total
setbeamertemplate{footline}{%
leavevmode%
hbox{begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm plus1fill,rightskip=.3cm]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthor~(insertshortinstitute)
end{beamercolorbox}%
begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitlehfillinsertframenumber,/,inserttotalframenumber
end{beamercolorbox}}%
vskip0pt%
}

% The below is used for creating section pages
makeatletter
setbeamertemplate{section page}
{
begin{centering}
begin{beamercolorbox}[sep=12pt,center,colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]{part title}
usebeamerfont{section title}insertsectionpar
end{beamercolorbox}
end{centering}
}
% setbeamertemplate{section page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
setbeamertemplate{subsection page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
makeatother

AtBeginSection[]{
begin{frame}[plain,c]
sectionpage
end{frame}
}

begin{document}

frame{titlepage}

...

end{document}





share|improve this answer
























  • Thanks, that works perfectly. But the yellow bit where "Outline" is stays yellow. I'd like that to be the blue as well if possible. Also, how do I change the font colour of the header and also the Central Bank Watching to be in white? So it is easier to read against the blue background.

    – eBopBob
    22 hours ago











  • I don't know what you mean by "where Outline is". But I guess you can play around with palette secondary or palette secondary. Concerning the font I am reasonable positive that this would be defined by fg= instead of bg=

    – sheß
    22 hours ago











  • The "outline" is in the original image, so it is header of the normal slides (not title slide). Thanks, I'll give the "fg" a go.

    – eBopBob
    22 hours ago











  • Sorry, didn't pay attention to the first picture, only to your code. The "outline" seems to be the title of the next frame. Then you should be able to change that with setbeamercolor{frametitle}{bg=aa}

    – sheß
    22 hours ago













  • Thanks, that's perfect! Much appreciated.

    – eBopBob
    22 hours ago











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f477870%2fhow-do-i-change-the-colouring-of-my-beamer-template%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









2














Adding



definecolor{aa}{RGB}{69, 91, 196}
definecolor{bb}{RGB}{168, 178, 85}
setbeamercolor*{palette primary}{bg=aa}
setbeamercolor*{palette quaternary}{bg=bb}


does the trick.



Alternatively you could manually change individual colors like this:



setbeamercolor{title}{bg=aa}


But this requires a lot more trial and error if you don't know how your particular template is set-up.



enter image description here



documentclass[t,aspectratio=169]{beamer}
usepackage[utf8]{inputenc}
usetheme{Copenhagen}
usecolortheme{wolverine}
beamertemplatenavigationsymbolsempty % Removes the interactive buttons
setbeamertemplate{headline}{} % Removes the header sections

definecolor{aa}{RGB}{69, 91, 196}
definecolor{bb}{RGB}{168, 178, 85}
setbeamercolor*{palette primary}{bg=aa}
setbeamercolor*{palette quaternary}{bg=bb}



% ADDS SLIDE NUMBERS
%newcommand*oldmacro{}%
%letoldmacroinsertshorttitle%
%renewcommand*insertshorttitle{%
% oldmacrohfill%
% insertframenumber,/,inserttotalframenumber}

% Additional packages needed
usepackage{amsmath} % For ???
usepackage{dsfont} % For mathds font
usepackage{hologo} % For BibTeX font
usepackage{lmodern} % For ???

%Information to be included in the title page:
title{Central Bank Watching}

author{NAME}

institute[University]
{
University newline newline March 2019
}

date[today]{}

titlegraphic{flushleft includegraphics[scale=0.25]{UNI.png}}

% The below defines the footer such that it is:
% First Last (Institution) || Title frame / frame total
setbeamertemplate{footline}{%
leavevmode%
hbox{begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm plus1fill,rightskip=.3cm]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthor~(insertshortinstitute)
end{beamercolorbox}%
begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitlehfillinsertframenumber,/,inserttotalframenumber
end{beamercolorbox}}%
vskip0pt%
}

% The below is used for creating section pages
makeatletter
setbeamertemplate{section page}
{
begin{centering}
begin{beamercolorbox}[sep=12pt,center,colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]{part title}
usebeamerfont{section title}insertsectionpar
end{beamercolorbox}
end{centering}
}
% setbeamertemplate{section page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
setbeamertemplate{subsection page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
makeatother

AtBeginSection[]{
begin{frame}[plain,c]
sectionpage
end{frame}
}

begin{document}

frame{titlepage}

...

end{document}





share|improve this answer
























  • Thanks, that works perfectly. But the yellow bit where "Outline" is stays yellow. I'd like that to be the blue as well if possible. Also, how do I change the font colour of the header and also the Central Bank Watching to be in white? So it is easier to read against the blue background.

    – eBopBob
    22 hours ago











  • I don't know what you mean by "where Outline is". But I guess you can play around with palette secondary or palette secondary. Concerning the font I am reasonable positive that this would be defined by fg= instead of bg=

    – sheß
    22 hours ago











  • The "outline" is in the original image, so it is header of the normal slides (not title slide). Thanks, I'll give the "fg" a go.

    – eBopBob
    22 hours ago











  • Sorry, didn't pay attention to the first picture, only to your code. The "outline" seems to be the title of the next frame. Then you should be able to change that with setbeamercolor{frametitle}{bg=aa}

    – sheß
    22 hours ago













  • Thanks, that's perfect! Much appreciated.

    – eBopBob
    22 hours ago
















2














Adding



definecolor{aa}{RGB}{69, 91, 196}
definecolor{bb}{RGB}{168, 178, 85}
setbeamercolor*{palette primary}{bg=aa}
setbeamercolor*{palette quaternary}{bg=bb}


does the trick.



Alternatively you could manually change individual colors like this:



setbeamercolor{title}{bg=aa}


But this requires a lot more trial and error if you don't know how your particular template is set-up.



enter image description here



documentclass[t,aspectratio=169]{beamer}
usepackage[utf8]{inputenc}
usetheme{Copenhagen}
usecolortheme{wolverine}
beamertemplatenavigationsymbolsempty % Removes the interactive buttons
setbeamertemplate{headline}{} % Removes the header sections

definecolor{aa}{RGB}{69, 91, 196}
definecolor{bb}{RGB}{168, 178, 85}
setbeamercolor*{palette primary}{bg=aa}
setbeamercolor*{palette quaternary}{bg=bb}



% ADDS SLIDE NUMBERS
%newcommand*oldmacro{}%
%letoldmacroinsertshorttitle%
%renewcommand*insertshorttitle{%
% oldmacrohfill%
% insertframenumber,/,inserttotalframenumber}

% Additional packages needed
usepackage{amsmath} % For ???
usepackage{dsfont} % For mathds font
usepackage{hologo} % For BibTeX font
usepackage{lmodern} % For ???

%Information to be included in the title page:
title{Central Bank Watching}

author{NAME}

institute[University]
{
University newline newline March 2019
}

date[today]{}

titlegraphic{flushleft includegraphics[scale=0.25]{UNI.png}}

% The below defines the footer such that it is:
% First Last (Institution) || Title frame / frame total
setbeamertemplate{footline}{%
leavevmode%
hbox{begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm plus1fill,rightskip=.3cm]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthor~(insertshortinstitute)
end{beamercolorbox}%
begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitlehfillinsertframenumber,/,inserttotalframenumber
end{beamercolorbox}}%
vskip0pt%
}

% The below is used for creating section pages
makeatletter
setbeamertemplate{section page}
{
begin{centering}
begin{beamercolorbox}[sep=12pt,center,colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]{part title}
usebeamerfont{section title}insertsectionpar
end{beamercolorbox}
end{centering}
}
% setbeamertemplate{section page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
setbeamertemplate{subsection page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
makeatother

AtBeginSection[]{
begin{frame}[plain,c]
sectionpage
end{frame}
}

begin{document}

frame{titlepage}

...

end{document}





share|improve this answer
























  • Thanks, that works perfectly. But the yellow bit where "Outline" is stays yellow. I'd like that to be the blue as well if possible. Also, how do I change the font colour of the header and also the Central Bank Watching to be in white? So it is easier to read against the blue background.

    – eBopBob
    22 hours ago











  • I don't know what you mean by "where Outline is". But I guess you can play around with palette secondary or palette secondary. Concerning the font I am reasonable positive that this would be defined by fg= instead of bg=

    – sheß
    22 hours ago











  • The "outline" is in the original image, so it is header of the normal slides (not title slide). Thanks, I'll give the "fg" a go.

    – eBopBob
    22 hours ago











  • Sorry, didn't pay attention to the first picture, only to your code. The "outline" seems to be the title of the next frame. Then you should be able to change that with setbeamercolor{frametitle}{bg=aa}

    – sheß
    22 hours ago













  • Thanks, that's perfect! Much appreciated.

    – eBopBob
    22 hours ago














2












2








2







Adding



definecolor{aa}{RGB}{69, 91, 196}
definecolor{bb}{RGB}{168, 178, 85}
setbeamercolor*{palette primary}{bg=aa}
setbeamercolor*{palette quaternary}{bg=bb}


does the trick.



Alternatively you could manually change individual colors like this:



setbeamercolor{title}{bg=aa}


But this requires a lot more trial and error if you don't know how your particular template is set-up.



enter image description here



documentclass[t,aspectratio=169]{beamer}
usepackage[utf8]{inputenc}
usetheme{Copenhagen}
usecolortheme{wolverine}
beamertemplatenavigationsymbolsempty % Removes the interactive buttons
setbeamertemplate{headline}{} % Removes the header sections

definecolor{aa}{RGB}{69, 91, 196}
definecolor{bb}{RGB}{168, 178, 85}
setbeamercolor*{palette primary}{bg=aa}
setbeamercolor*{palette quaternary}{bg=bb}



% ADDS SLIDE NUMBERS
%newcommand*oldmacro{}%
%letoldmacroinsertshorttitle%
%renewcommand*insertshorttitle{%
% oldmacrohfill%
% insertframenumber,/,inserttotalframenumber}

% Additional packages needed
usepackage{amsmath} % For ???
usepackage{dsfont} % For mathds font
usepackage{hologo} % For BibTeX font
usepackage{lmodern} % For ???

%Information to be included in the title page:
title{Central Bank Watching}

author{NAME}

institute[University]
{
University newline newline March 2019
}

date[today]{}

titlegraphic{flushleft includegraphics[scale=0.25]{UNI.png}}

% The below defines the footer such that it is:
% First Last (Institution) || Title frame / frame total
setbeamertemplate{footline}{%
leavevmode%
hbox{begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm plus1fill,rightskip=.3cm]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthor~(insertshortinstitute)
end{beamercolorbox}%
begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitlehfillinsertframenumber,/,inserttotalframenumber
end{beamercolorbox}}%
vskip0pt%
}

% The below is used for creating section pages
makeatletter
setbeamertemplate{section page}
{
begin{centering}
begin{beamercolorbox}[sep=12pt,center,colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]{part title}
usebeamerfont{section title}insertsectionpar
end{beamercolorbox}
end{centering}
}
% setbeamertemplate{section page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
setbeamertemplate{subsection page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
makeatother

AtBeginSection[]{
begin{frame}[plain,c]
sectionpage
end{frame}
}

begin{document}

frame{titlepage}

...

end{document}





share|improve this answer













Adding



definecolor{aa}{RGB}{69, 91, 196}
definecolor{bb}{RGB}{168, 178, 85}
setbeamercolor*{palette primary}{bg=aa}
setbeamercolor*{palette quaternary}{bg=bb}


does the trick.



Alternatively you could manually change individual colors like this:



setbeamercolor{title}{bg=aa}


But this requires a lot more trial and error if you don't know how your particular template is set-up.



enter image description here



documentclass[t,aspectratio=169]{beamer}
usepackage[utf8]{inputenc}
usetheme{Copenhagen}
usecolortheme{wolverine}
beamertemplatenavigationsymbolsempty % Removes the interactive buttons
setbeamertemplate{headline}{} % Removes the header sections

definecolor{aa}{RGB}{69, 91, 196}
definecolor{bb}{RGB}{168, 178, 85}
setbeamercolor*{palette primary}{bg=aa}
setbeamercolor*{palette quaternary}{bg=bb}



% ADDS SLIDE NUMBERS
%newcommand*oldmacro{}%
%letoldmacroinsertshorttitle%
%renewcommand*insertshorttitle{%
% oldmacrohfill%
% insertframenumber,/,inserttotalframenumber}

% Additional packages needed
usepackage{amsmath} % For ???
usepackage{dsfont} % For mathds font
usepackage{hologo} % For BibTeX font
usepackage{lmodern} % For ???

%Information to be included in the title page:
title{Central Bank Watching}

author{NAME}

institute[University]
{
University newline newline March 2019
}

date[today]{}

titlegraphic{flushleft includegraphics[scale=0.25]{UNI.png}}

% The below defines the footer such that it is:
% First Last (Institution) || Title frame / frame total
setbeamertemplate{footline}{%
leavevmode%
hbox{begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm plus1fill,rightskip=.3cm]{author in head/foot}%
usebeamerfont{author in head/foot}insertshortauthor~(insertshortinstitute)
end{beamercolorbox}%
begin{beamercolorbox}[wd=.5paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}%
usebeamerfont{title in head/foot}insertshorttitlehfillinsertframenumber,/,inserttotalframenumber
end{beamercolorbox}}%
vskip0pt%
}

% The below is used for creating section pages
makeatletter
setbeamertemplate{section page}
{
begin{centering}
begin{beamercolorbox}[sep=12pt,center,colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]{part title}
usebeamerfont{section title}insertsectionpar
end{beamercolorbox}
end{centering}
}
% setbeamertemplate{section page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
setbeamertemplate{subsection page}[default][colsep=-4bp,rounded=true,shadow=beamer@themerounded@shadow]
makeatother

AtBeginSection[]{
begin{frame}[plain,c]
sectionpage
end{frame}
}

begin{document}

frame{titlepage}

...

end{document}






share|improve this answer












share|improve this answer



share|improve this answer










answered 22 hours ago









sheßsheß

1,94411429




1,94411429













  • Thanks, that works perfectly. But the yellow bit where "Outline" is stays yellow. I'd like that to be the blue as well if possible. Also, how do I change the font colour of the header and also the Central Bank Watching to be in white? So it is easier to read against the blue background.

    – eBopBob
    22 hours ago











  • I don't know what you mean by "where Outline is". But I guess you can play around with palette secondary or palette secondary. Concerning the font I am reasonable positive that this would be defined by fg= instead of bg=

    – sheß
    22 hours ago











  • The "outline" is in the original image, so it is header of the normal slides (not title slide). Thanks, I'll give the "fg" a go.

    – eBopBob
    22 hours ago











  • Sorry, didn't pay attention to the first picture, only to your code. The "outline" seems to be the title of the next frame. Then you should be able to change that with setbeamercolor{frametitle}{bg=aa}

    – sheß
    22 hours ago













  • Thanks, that's perfect! Much appreciated.

    – eBopBob
    22 hours ago



















  • Thanks, that works perfectly. But the yellow bit where "Outline" is stays yellow. I'd like that to be the blue as well if possible. Also, how do I change the font colour of the header and also the Central Bank Watching to be in white? So it is easier to read against the blue background.

    – eBopBob
    22 hours ago











  • I don't know what you mean by "where Outline is". But I guess you can play around with palette secondary or palette secondary. Concerning the font I am reasonable positive that this would be defined by fg= instead of bg=

    – sheß
    22 hours ago











  • The "outline" is in the original image, so it is header of the normal slides (not title slide). Thanks, I'll give the "fg" a go.

    – eBopBob
    22 hours ago











  • Sorry, didn't pay attention to the first picture, only to your code. The "outline" seems to be the title of the next frame. Then you should be able to change that with setbeamercolor{frametitle}{bg=aa}

    – sheß
    22 hours ago













  • Thanks, that's perfect! Much appreciated.

    – eBopBob
    22 hours ago

















Thanks, that works perfectly. But the yellow bit where "Outline" is stays yellow. I'd like that to be the blue as well if possible. Also, how do I change the font colour of the header and also the Central Bank Watching to be in white? So it is easier to read against the blue background.

– eBopBob
22 hours ago





Thanks, that works perfectly. But the yellow bit where "Outline" is stays yellow. I'd like that to be the blue as well if possible. Also, how do I change the font colour of the header and also the Central Bank Watching to be in white? So it is easier to read against the blue background.

– eBopBob
22 hours ago













I don't know what you mean by "where Outline is". But I guess you can play around with palette secondary or palette secondary. Concerning the font I am reasonable positive that this would be defined by fg= instead of bg=

– sheß
22 hours ago





I don't know what you mean by "where Outline is". But I guess you can play around with palette secondary or palette secondary. Concerning the font I am reasonable positive that this would be defined by fg= instead of bg=

– sheß
22 hours ago













The "outline" is in the original image, so it is header of the normal slides (not title slide). Thanks, I'll give the "fg" a go.

– eBopBob
22 hours ago





The "outline" is in the original image, so it is header of the normal slides (not title slide). Thanks, I'll give the "fg" a go.

– eBopBob
22 hours ago













Sorry, didn't pay attention to the first picture, only to your code. The "outline" seems to be the title of the next frame. Then you should be able to change that with setbeamercolor{frametitle}{bg=aa}

– sheß
22 hours ago







Sorry, didn't pay attention to the first picture, only to your code. The "outline" seems to be the title of the next frame. Then you should be able to change that with setbeamercolor{frametitle}{bg=aa}

– sheß
22 hours ago















Thanks, that's perfect! Much appreciated.

– eBopBob
22 hours ago





Thanks, that's perfect! Much appreciated.

– eBopBob
22 hours ago


















draft saved

draft discarded




















































Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f477870%2fhow-do-i-change-the-colouring-of-my-beamer-template%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Why does my Macbook overheat and use so much CPU and energy when on YouTube?Why do so many insist on using...

How to prevent page numbers from appearing on glossaries?How to remove a dot and a page number in the...

Puerta de Hutt Referencias Enlaces externos Menú de navegación15°58′00″S 5°42′00″O /...