In sass, I have to support IE9 gradients by using svg linear gradient, which takes color hex string without #. Those are multi color gradients, that cannot be achieved by ie filters.
I have defined colors like this:
$color: #ff0000;
But for ie stuff to work, I need to have color without hash sign: ff0000 only.
It seems it is not possible to remove a character in string with sass ?
Does that mean that I must declare colors without #, and then add it in every mixin, except IE svg declarations ? This seems as bad approach but can't find a better solution, has anyone run into a similar issue ?