blob: f118c03b1b69f17f59d3aa9d0323822619bd3eaf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// modified Bulma default variables
@import "../bulma/sass/utilities/initial-variables";
@import "../bulma/sass/utilities/functions";
// override colors using Hugo parameters for Huey theme
$scheme-main: {{ .Site.Params.schemeMain | default "#fff" }}; // default scheme, background color
$link: {{ .Site.Params.link | default "#000" }}; // link color
$link-hover: {{ .Site.Params.linkHover | default "#888"}}; // link hover color
$footer-color: {{ .Site.Params.footerBackground | default "true"}}; // removes background color in footer
$footer-background-color: {{ .Site.Params.footerBackgroundColor | default "false;"}}; // specifies a footer color
$navbar-item-hover-color: {{ .Site.Params.navbarItemHoverColor | default "#444;"}}; // navbar menu color hover
$navbar-item-color: {{ .Site.Params.navbarItemColor | default "#888"}}; // navbar menu text color
@import "../bulma/";
|