move accents color options to config.yml
This commit is contained in:
parent
34a2fde803
commit
0d8e8c6d74
|
@ -1,2 +1,3 @@
|
|||
_site/*
|
||||
.sass-cache/*
|
||||
.idea/*
|
||||
|
|
|
@ -40,6 +40,11 @@ owner:
|
|||
codepen: #username
|
||||
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.
|
||||
creative-commons:
|
||||
cc-by: #yes
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
/* ==========================================================================
|
||||
Sass accent colors
|
||||
========================================================================== */
|
||||
|
||||
|
||||
$highlightcolor : #CC0000;
|
||||
$lowlightcolor : #000;
|
|
@ -12,7 +12,8 @@ sitemap: false
|
|||
*/
|
||||
|
||||
// Partials
|
||||
@import "../accent";
|
||||
$highlightcolor: {{ site.highlight-color }};
|
||||
$lowlightcolor: {{ site.lowlight-color }};
|
||||
@import "resume";
|
||||
@import "variables";
|
||||
@import "grid";
|
||||
|
|
|
@ -12,7 +12,8 @@ sitemap: false
|
|||
*/
|
||||
|
||||
// Partials
|
||||
@import "../accent";
|
||||
$highlightcolor: {{ site.highlight-color }};
|
||||
$lowlightcolor: {{ site.lowlight-color }};
|
||||
@import "variables";
|
||||
@import "grid";
|
||||
@import "mixins";
|
||||
|
|
Loading…
Reference in New Issue