Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cowboysmall-tools/hugo-devresume-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerry Kiely <jerry@cowboysmall.com>2019-11-15 15:55:56 +0300
committerJerry Kiely <jerry@cowboysmall.com>2019-11-15 15:55:56 +0300
commit795fe4b6411b7ec85350a189e60833ac4c842c6e (patch)
tree0f3c6bfacb6a60485ca87017e645443c9326d5d6
parent488eefe04ad9a2f5138e635b5272c9a9784c5e3c (diff)
slight change to colour param names
-rw-r--r--assets/scss/devresume.scss4
-rw-r--r--exampleSite/config.toml4
2 files changed, 4 insertions, 4 deletions
diff --git a/assets/scss/devresume.scss b/assets/scss/devresume.scss
index 9e5b307..dc6d47d 100644
--- a/assets/scss/devresume.scss
+++ b/assets/scss/devresume.scss
@@ -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%);
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 1e000e8..60a38b4 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -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"