Skip to content

Instantly share code, notes, and snippets.

View keeperofkeys's full-sized avatar

Chris Ovenden keeperofkeys

View GitHub Profile
@keeperofkeys
keeperofkeys / library.scss
Last active November 7, 2018 10:08 — 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' {
@if $string != transparent {
$hex: str-slice(ie-hex-str($string), 4);
$string:unquote("#{$hex}");
$string: '%23' + $string;
}
}
@return $string;