Sass variables can be used like this:
!blue = #3bbfce
.content_navigation
border-color = !blue
color = !blue - #111
This works very well on "single-value" variables. I'm not able to use them on "multi-value" css rules, such as background:
!blue = #3bbfce
//this doesn't work
.content_navigation
background =!blue url(/path/to/image) 0 0 no-repeat
How do I do this?