added the ability to change colours in config.toml - primary and text primary

This commit is contained in:
Jerry Kiely 2019-11-15 01:04:46 +00:00
parent 73727c0d48
commit 488eefe04a
5 changed files with 14 additions and 14 deletions

View file

@ -10,8 +10,8 @@
/*************************** Theme Colours****************************/
// Define theme colour scheme
$theme-color-primary: #54B689;
$theme-text-color-primary: #292929;
$theme-color-primary: {{ .Site.Params.primary_color | default "#54B689" }};
$theme-text-color-primary: {{ .Site.Params.text_primary_color | 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,7 +16,8 @@ googleAnalytics = "UA-XXXXXXX-Y"
description = "DevResume - Bootstrap 4 Resume/CV Template For Software Developers"
primary_color = "#54B689"
text_primary_color = "#292929"

View file

@ -13,6 +13,5 @@
<!-- Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900">
<!-- Theme SCSS -->
{{ $options := (dict "targetPath" "assets/css/devresume.css") }}
{{ $style := resources.Get "scss/devresume.scss" | toCSS $options | minify | fingerprint }}
{{ $style := resources.Get "scss/devresume.scss" | resources.ExecuteAsTemplate "scss/devresume.scss" . | toCSS (dict "targetPath" "assets/css/devresume.css") | minify | fingerprint }}
<link rel="stylesheet" href="{{ $style.Permalink }}">