Change color names in email package

This commit is contained in:
saimeunt 2015-04-13 04:49:54 +02:00
parent 2e10b2f973
commit f752be9d30
2 changed files with 4 additions and 4 deletions

View file

@ -15,8 +15,8 @@ getEmailTemplate = function (template) {
buildEmailTemplate = function (htmlContent) { buildEmailTemplate = function (htmlContent) {
var emailProperties = { var emailProperties = {
headerColor: Settings.get('headerColor', '#444444'), secondaryColor: Settings.get('secondaryColor', '#444444'),
buttonColor: Settings.get('buttonColor', '#DD3416'), accentColor: Settings.get('accentColor', '#DD3416'),
siteName: Settings.get('title'), siteName: Settings.get('title'),
tagline: Settings.get('tagline'), tagline: Settings.get('tagline'),
siteUrl: getSiteUrl(), siteUrl: getSiteUrl(),

View file

@ -36,7 +36,7 @@
} }
} }
a{ a{
color: {{buttonColor}}; color: {{accentColor}};
font-weight: bold; font-weight: bold;
text-decoration: none; text-decoration: none;
} }
@ -47,7 +47,7 @@
border-radius: 3px; border-radius: 3px;
} }
.heading-container{ .heading-container{
background: {{headerColor}}; background: {{secondaryColor}};
padding: 15px; padding: 15px;
text-align: center; text-align: center;
border-radius: 3px 3px 0px 0px; border-radius: 3px 3px 0px 0px;