Skip to content

Instantly share code, notes, and snippets.

View mateusmiguel's full-sized avatar

Mateus Miguel mateusmiguel

View GitHub Profile
@mateusmiguel
mateusmiguel / library.scss
Created October 30, 2019 14:19 — forked from certainlyakey/library.scss
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;
}