I have this variable:
$color_pr1: #d6ad3f;
Now, I'm using Gumby and it uses it's own settings sheet where the following is set:
$header-font-color: #55636b !default;
Is it possible to use $color_pr1
instead? Like this?
$header-font-color: $color_pr1; ?
If now, am I thinking about this all wrong? I'd like to have my own set of colors etc and reuse those within my project.
Use css calc()
function:
$header-font-color: calc(#{$color_pr1});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With