slight change to colour param names

This commit is contained in:
Jerry Kiely 2019-11-15 12:55:56 +00:00
parent 488eefe04a
commit 795fe4b641
2 changed files with 4 additions and 4 deletions

View file

@ -10,8 +10,8 @@
/*************************** Theme Colours****************************/
// Define theme colour scheme
$theme-color-primary: {{ .Site.Params.primary_color | default "#54B689" }};
$theme-text-color-primary: {{ .Site.Params.text_primary_color | default "#292929" }};
$theme-color-primary: {{ .Site.Params.primaryColor | default "#54B689" }};
$theme-text-color-primary: {{ .Site.Params.textPrimaryColor | default "#292929" }};
$theme-text-color-secondary: lighten($theme-text-color-primary, 15%);
$theme-text-color-light: lighten($theme-text-color-primary, 40%);
$theme-border-color: lighten($theme-text-color-primary, 60%);

View file

@ -16,8 +16,8 @@ googleAnalytics = "UA-XXXXXXX-Y"
description = "DevResume - Bootstrap 4 Resume/CV Template For Software Developers"
primary_color = "#54B689"
text_primary_color = "#292929"
primaryColor = "#54B689"
textPrimaryColor = "#292929"