certainlyakey
11/15/2015 - 3:09 PM

URL-encode color SASS function / convert color to hex SASS function

URL-encode color SASS function / convert color to hex SASS function

//does not work with colors containing alpha
@function encodecolor($string) {
	@if type-of($string) == 'color' {
        $hex: str-slice(ie-hex-str($string), 4);
        $string:unquote("#{$hex}");
    }
    $string: '%23' + $string;
	@return $string;
}