How to use css4 variables (custom properties) right now and maintain backwards compatibility.

Using the provided SASS var() function you can start using css4 custom properties and by changing the $css4 variable to 'false' it the function will return the value of the used variable instead of css4 function. So you can develope in css4 and in the end convert the whole styles back to css3.

If you want to use css4 variables AND have fall-back to css3 in the same time, you can wrap the properties that use the var() function in the css4 mixin. This is the best way to use the css4 variables, as it can be easily maintained from css4 through css4 with css3 fallback, to css3 only, just by changing two variables - $css4, and $compatibility

TRY IT YOURSELF! :)

tip: try editing the variables in the html element from the inspector and see the real time changes without need of preprocessing time :)