move accents color options to config.yml

This commit is contained in:
Luke Aeschleman 2018-02-05 14:12:48 -05:00
parent 34a2fde803
commit 0d8e8c6d74
5 changed files with 10 additions and 9 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
_site/* _site/*
.sass-cache/* .sass-cache/*
.idea/*

View File

@ -40,6 +40,11 @@ owner:
codepen: #username codepen: #username
disqus-shortname: disqus-shortname:
# The following adjust the accents for your site. If you would like to further edit colors, fonts, font sizes, etc.
# you may do so in _sass/variables.scss
highlight-color: '#CC0000'
lowlight-color: '#000'
# NOTE: If you would like your site to be licensed under a creative commons license, uncomment the 'yes' next to the type of license you wish to use. # NOTE: If you would like your site to be licensed under a creative commons license, uncomment the 'yes' next to the type of license you wish to use.
creative-commons: creative-commons:
cc-by: #yes cc-by: #yes

View File

@ -1,7 +0,0 @@
/* ==========================================================================
Sass accent colors
========================================================================== */
$highlightcolor : #CC0000;
$lowlightcolor : #000;

View File

@ -12,7 +12,8 @@ sitemap: false
*/ */
// Partials // Partials
@import "../accent"; $highlightcolor: {{ site.highlight-color }};
$lowlightcolor: {{ site.lowlight-color }};
@import "resume"; @import "resume";
@import "variables"; @import "variables";
@import "grid"; @import "grid";

View File

@ -12,7 +12,8 @@ sitemap: false
*/ */
// Partials // Partials
@import "../accent"; $highlightcolor: {{ site.highlight-color }};
$lowlightcolor: {{ site.lowlight-color }};
@import "variables"; @import "variables";
@import "grid"; @import "grid";
@import "mixins"; @import "mixins";